diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2014-11-16 10:21:55 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2014-11-16 10:21:55 +0800 |
commit | ddca18638f1a81e730001ff7fda4581379094aa4 (patch) | |
tree | d6a9f95b6a04991a95ed3ea1047e641a70b7ecb1 /state/main_test.go | |
parent | 3588c4a9feb4204419d9c0fa2a4c9089120221b7 (diff) | |
download | dexon-ddca18638f1a81e730001ff7fda4581379094aa4.tar dexon-ddca18638f1a81e730001ff7fda4581379094aa4.tar.gz dexon-ddca18638f1a81e730001ff7fda4581379094aa4.tar.bz2 dexon-ddca18638f1a81e730001ff7fda4581379094aa4.tar.lz dexon-ddca18638f1a81e730001ff7fda4581379094aa4.tar.xz dexon-ddca18638f1a81e730001ff7fda4581379094aa4.tar.zst dexon-ddca18638f1a81e730001ff7fda4581379094aa4.zip |
update imports order per goimports
Diffstat (limited to 'state/main_test.go')
-rw-r--r-- | state/main_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
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) } |