Skip to content

Commit 6cf5509

Browse files
committed
EOF_line missing
1 parent 8339437 commit 6cf5509

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/crypto/psa_crypto/src/key_agreement.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ ZTEST(psa_crypto_test, test_key_agreement_ecdh_25519)
8080
zassert_equal(psa_destroy_key(key_id), PSA_SUCCESS, "Failed to destroy server key");
8181
if (!IS_ENABLED(CONFIG_TEST_WRAPPED_KEYS)) {
8282
/* Verify shared secret */
83-
zassert_mem_equal(shared_secret_buf, expected_shared_secret, sizeof(expected_shared_secret),
84-
"Key agreement did not resolve the correct shared secret");
83+
zassert_mem_equal(shared_secret_buf, expected_shared_secret,
84+
sizeof(expected_shared_secret),
85+
"Key agreement did not resolve the correct shared secret");
8586
}
8687
}

0 commit comments

Comments
 (0)