소스 검색

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

Yawning Angel 1 년 전
부모
커밋
4815154c31
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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,