Browse Source

test/core/crypto: Fix a copy-paste issue in failure spew

Yawning Angel 1 year ago
parent
commit
4815154c31
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/core/crypto/test_core_crypto_kdf.odin

+ 1 - 1
tests/core/crypto/test_core_crypto_kdf.odin

@@ -161,7 +161,7 @@ test_pbkdf2 :: proc(t: ^testing.T) {
 		testing.expectf(
 			t,
 			dst_str == v.dk,
-			"HMAC-%s: Expected: %s for input of (%s, %s, %d), but got %s instead",
+			"PBKDF2-%s: Expected: %s for input of (%s, %s, %d), but got %s instead",
 			algo_name,
 			v.dk,
 			v.password,