update imports order per goimports

This commit is contained in:
Taylor Gerring 2014-11-15 20:21:55 -06:00
parent 3588c4a9fe
commit ddca18638f
6 changed files with 12 additions and 6 deletions

View File

@ -1,8 +1,9 @@
package rle
import (
checker "gopkg.in/check.v1"
"testing"
checker "gopkg.in/check.v1"
)
func Test(t *testing.T) { checker.TestingT(t) }

View File

@ -1,8 +1,9 @@
package ethutil
import (
checker "gopkg.in/check.v1"
"testing"
checker "gopkg.in/check.v1"
)
func Test(t *testing.T) { checker.TestingT(t) }

View File

@ -1,8 +1,9 @@
package ethutil
import (
checker "gopkg.in/check.v1"
"math/big"
checker "gopkg.in/check.v1"
)
type ValueSuite struct{}

View File

@ -1,8 +1,9 @@
package state
import (
checker "gopkg.in/check.v1"
"testing"
checker "gopkg.in/check.v1"
)
func Test(t *testing.T) { checker.TestingT(t) }

View File

@ -1,8 +1,9 @@
package trie
import (
checker "gopkg.in/check.v1"
"testing"
checker "gopkg.in/check.v1"
)
func Test(t *testing.T) { checker.TestingT(t) }

View File

@ -4,12 +4,13 @@ import (
"encoding/hex"
"encoding/json"
"fmt"
checker "gopkg.in/check.v1"
"io/ioutil"
"math/rand"
"net/http"
"time"
checker "gopkg.in/check.v1"
"github.com/ethereum/go-ethereum/ethutil"
)