From 7299fd6a4c6a658b378e4df12468d302ff6a7512 Mon Sep 17 00:00:00 2001 From: =Corey Hulen Date: Wed, 9 Dec 2015 20:59:15 -0800 Subject: [PATCH] Fixing unit test --- model/utils_test.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/model/utils_test.go b/model/utils_test.go index 626386227c..1f1e5f0238 100644 --- a/model/utils_test.go +++ b/model/utils_test.go @@ -20,13 +20,10 @@ func TestNewId(t *testing.T) { func TestRandomString(t *testing.T) { for i := 0; i < 1000; i++ { r := NewRandomString(32) - t.Log(r) if len(r) != 32 { t.Fatal("should be 32 chars") } } - - t.Fatal("test") } func TestAppError(t *testing.T) {