update imports order per goimports

pull/199/head
Taylor Gerring 10 years ago
parent 3588c4a9fe
commit ddca18638f
  1. 3
      compression/rle/read_write_test.go
  2. 3
      ethutil/main_test.go
  3. 3
      ethutil/value_test.go
  4. 3
      state/main_test.go
  5. 3
      trie/main_test.go
  6. 3
      trie/trie_test.go

@ -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) }

@ -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) }

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

@ -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) }

@ -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) }

@ -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"
)

Loading…
Cancel
Save