summaryrefslogtreecommitdiffstats
path: root/model/utils_test.go
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-12-09 20:59:15 -0800
committer=Corey Hulen <corey@hulen.com>2015-12-09 20:59:15 -0800
commit7299fd6a4c6a658b378e4df12468d302ff6a7512 (patch)
tree158ab68018655d19110dd106e07439de41d87081 /model/utils_test.go
parent9fbe16c17b6b435d0737e15be2d06fddd76798cc (diff)
downloadchat-7299fd6a4c6a658b378e4df12468d302ff6a7512.tar.gz
chat-7299fd6a4c6a658b378e4df12468d302ff6a7512.tar.bz2
chat-7299fd6a4c6a658b378e4df12468d302ff6a7512.zip
Fixing unit test
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) {