Skip to content

Commit e92c7fe

Browse files
committed
EOF_line missing
1 parent 91ed709 commit e92c7fe

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

tests/crypto/psa_crypto/src/aead.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,4 +164,4 @@ ZTEST(psa_crypto_test, test_aead_chacha20_poly1305)
164164
zassert_mem_equal(decrypted, chachapoly_plaintext, sizeof(chachapoly_plaintext));
165165

166166
zassert_equal(psa_destroy_key(key_id), PSA_SUCCESS, "Failed to destroy key");
167-
}
167+
}

tests/crypto/psa_crypto/src/cipher.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,4 +189,4 @@ ZTEST(psa_crypto_test, test_cipher_chacha20_single)
189189
PSA_SUCCESS, "Failed to decrypt");
190190

191191
zassert_mem_equal(decrypted, plaintext, sizeof(plaintext));
192-
}
192+
}

tests/crypto/psa_crypto/src/hash.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@ ZTEST(psa_crypto_test, test_hash_sha256_multipart)
5858
zassert_equal(hash_len, sizeof(expect_sha256_hash), "Hash length mismatch");
5959
zassert_mem_equal(hash_buf, expect_sha256_hash, sizeof(expect_sha256_hash),
6060
"Hash mismatch");
61-
}
61+
}

tests/crypto/psa_crypto/src/key_agreement.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,5 @@ ZTEST(psa_crypto_test, test_key_agreement_ecdh_25519)
8282
/* Verify shared secret */
8383
zassert_mem_equal(shared_secret_buf, expected_shared_secret, sizeof(expected_shared_secret),
8484
"Key agreement did not resolve the correct shared secret");
85-
}
85+
}
86+
}

0 commit comments

Comments
 (0)