From 10e6048d1164e64326832d7a8d1ae03b66e916a4 Mon Sep 17 00:00:00 2001 From: claudemiro Date: Sun, 17 May 2015 13:16:59 -0300 Subject: [PATCH] Removed forgotten printf --- utils/utils_test.go | 1 - 1 file changed, 1 deletion(-) diff --git a/utils/utils_test.go b/utils/utils_test.go index bd99e88..d903498 100644 --- a/utils/utils_test.go +++ b/utils/utils_test.go @@ -13,7 +13,6 @@ import ( func TestGenerateSession(t *testing.T) { sessionID := GenerateSessionID() - fmt.Println(sessionID) if matched, _ := regexp.MatchString("^\\d+\\.\\d+$", sessionID); !matched { t.Errorf("Must match ^\\d+\\.\\d+$, value: '%s'", sessionID) }