aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--compression/rle/read_write_test.go3
-rw-r--r--ethutil/main_test.go3
-rw-r--r--ethutil/value_test.go3
-rw-r--r--state/main_test.go3
-rw-r--r--trie/main_test.go3
-rw-r--r--trie/trie_test.go3
6 files changed, 12 insertions, 6 deletions
diff --git a/compression/rle/read_write_test.go b/compression/rle/read_write_test.go
index 21a1eab35..e6aac9093 100644
--- a/compression/rle/read_write_test.go
+++ b/compression/rle/read_write_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) }
diff --git a/ethutil/main_test.go b/ethutil/main_test.go
index 94f34677d..fd4278ce7 100644
--- a/ethutil/main_test.go
+++ b/ethutil/main_test.go
@@ -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) }
diff --git a/ethutil/value_test.go b/ethutil/value_test.go
index 7c58d3b56..861d35184 100644
--- a/ethutil/value_test.go
+++ b/ethutil/value_test.go
@@ -1,8 +1,9 @@
package ethutil
import (
- checker "gopkg.in/check.v1"
"math/big"
+
+ checker "gopkg.in/check.v1"
)
type ValueSuite struct{}
diff --git a/state/main_test.go b/state/main_test.go
index 973a7c373..f3d3f7e23 100644
--- a/state/main_test.go
+++ b/state/main_test.go
@@ -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) }
diff --git a/trie/main_test.go b/trie/main_test.go
index f131b83de..f6f64c06f 100644
--- a/trie/main_test.go
+++ b/trie/main_test.go
@@ -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) }
diff --git a/trie/trie_test.go b/trie/trie_test.go
index 43cd6c145..3d135ffa2 100644
--- a/trie/trie_test.go
+++ b/trie/trie_test.go
@@ -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"
)