summaryrefslogtreecommitdiff
path: root/check_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'check_test.go')
-rw-r--r--check_test.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/check_test.go b/check_test.go
index 702c48a..61d2f22 100644
--- a/check_test.go
+++ b/check_test.go
@@ -4,5 +4,7 @@ import "testing"
func TestKey(t *testing.T) {
k := Key()
- t.Log(k)
+ if len(k) != 32 {
+ t.Error("expected a string of 32 chars")
+ }
}