From 2a9fc7baa908d64ff1ddae44641024114d3ec88d Mon Sep 17 00:00:00 2001 From: Taylor Gerring Date: Fri, 14 Nov 2014 15:01:52 -0600 Subject: Merge branch 'develop' of https://github.com/tgerring/go-ethereum --- trie/main_test.go | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 trie/main_test.go (limited to 'trie/main_test.go') diff --git a/trie/main_test.go b/trie/main_test.go new file mode 100644 index 000000000..f131b83de --- /dev/null +++ b/trie/main_test.go @@ -0,0 +1,8 @@ +package trie + +import ( + checker "gopkg.in/check.v1" + "testing" +) + +func Test(t *testing.T) { checker.TestingT(t) } -- cgit v1.2.3 From ddca18638f1a81e730001ff7fda4581379094aa4 Mon Sep 17 00:00:00 2001 From: Taylor Gerring Date: Sat, 15 Nov 2014 20:21:55 -0600 Subject: update imports order per goimports --- trie/main_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'trie/main_test.go') 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) } -- cgit v1.2.3