Use lowercase

This commit is contained in:
Seth Vargo 2015-04-30 13:37:47 -04:00
parent c803d23f98
commit 2de4965598
1 changed files with 3 additions and 3 deletions

View File

@ -118,13 +118,13 @@ func TestEncrypt_Unique(t *testing.T) {
primary := b.primary
if primary == nil {
t.Fatalf("Barrier Sealed")
t.Fatalf("barrier is sealed")
}
first := b.encrypt(primary, entry.Value)
second := b.encrypt(primary, entry.Value)
if (bytes.Equal(first, second) == true) {
t.Fatalf("Improper Random Seeding Detected")
if bytes.Equal(first, second) == true {
t.Fatalf("improper random seeding detected")
}
}