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 --- ethutil/main_test.go | 3 ++- ethutil/value_test.go | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'ethutil') 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{} -- cgit