summaryrefslogtreecommitdiffstats
path: root/model/utils_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'model/utils_test.go')
-rw-r--r--model/utils_test.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/model/utils_test.go b/model/utils_test.go
index 626386227..1f1e5f023 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) {