summaryrefslogtreecommitdiff
path: root/main_test.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2015-09-06 12:12:14 +0200
committerJakob Unterwurzacher2015-09-06 12:12:14 +0200
commitf2e2b813611a57192960e87df90ceed73d8e47d9 (patch)
tree7941a67ce030a63e12b08a825cb4908ebf6a1a91 /main_test.go
parent0a35d0970e86efbc5ed494395de7b448d3e337d0 (diff)
Add README.md
Also, run go fmt
Diffstat (limited to 'main_test.go')
-rw-r--r--main_test.go13
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)
}