0
Fork 0
mirror of https://github.com/caddyserver/caddy.git synced 2024-12-23 22:27:38 -05:00
This commit is contained in:
Matthew Holt 2016-03-17 16:43:50 -06:00
parent 37d050922b
commit b9f8c183fa
2 changed files with 5 additions and 5 deletions

View file

@ -88,9 +88,9 @@ func TestSaveAndLoadECCPrivateKey(t *testing.T) {
}
// verify loaded key is correct
if !PrivateKeysSame(privateKey, loadedKey) {
t.Error("Expected key bytes to be the same, but they weren't")
}
if !PrivateKeysSame(privateKey, loadedKey) {
t.Error("Expected key bytes to be the same, but they weren't")
}
}
// PrivateKeysSame compares the bytes of a and b and returns true if they are the same.