diff options
Diffstat (limited to 'main_test.go')
-rw-r--r-- | main_test.go | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/main_test.go b/main_test.go index f17b5f5..6b68b4a 100644 --- a/main_test.go +++ b/main_test.go @@ -1,15 +1,15 @@ package main import ( - "io" + "crypto/md5" + "encoding/hex" "fmt" - "time" - "testing" + "io" + "io/ioutil" "os" "os/exec" - "io/ioutil" - "crypto/md5" - "encoding/hex" + "testing" + "time" ) const tmpDir = "test_tmp_dir/" @@ -43,7 +43,6 @@ func TestMain(m *testing.M) { r := m.Run() - fu.Run() os.Exit(r) } |