summaryrefslogtreecommitdiff
path: root/app/utilities_test.go
diff options
context:
space:
mode:
authorHorus32015-02-27 04:02:15 +0100
committerHorus32015-02-27 04:02:15 +0100
commit6837ddf68f13a1633ea868ab55d71389ca5bc175 (patch)
tree94fbfabdfa4506eb1b2dbf0067a7c0fa87f294c9 /app/utilities_test.go
parent60767a3ea8190d3f070f3aae86c2d72ffb10cfd6 (diff)
downloadstatuspage-6837ddf68f13a1633ea868ab55d71389ca5bc175.tar.gz
Version 0.2. Sends E-Mails now. Also sticky post on index page to quickly inform people. Concatenated all CSS and JavaScript files.
Diffstat (limited to 'app/utilities_test.go')
-rw-r--r--app/utilities_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/utilities_test.go b/app/utilities_test.go
index 86ea3bf..1865c61 100644
--- a/app/utilities_test.go
+++ b/app/utilities_test.go
@@ -48,7 +48,7 @@ func TestRandomKey(t *testing.T) {
var key string
for i := 0; i < 100; i++ {
key = RandomKey()
- //t.Log(key) // Uncomment to see every generated key.
+ t.Log(key) // Uncomment to see every generated key.
if m[key] {
t.Fatal("Key not random.")
} else {