Skip to content

Commit

Permalink
PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
WillChilds-Klein committed Nov 21, 2024
1 parent 5d8bd7c commit f5d92c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto/pkcs7/pkcs7_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1817,7 +1817,7 @@ TEST(PKCS7Test, TestEnveloped) {
sizeof(decrypted) + EVP_CIPHER_block_size(EVP_aes_128_cbc());
int decrypted_len = BIO_read(bio.get(), decrypted, max_decrypt);
if (decrypted_len > (int)pt_len) {
EXPECT_GT(max_decrypt - 4, decrypted_len);
EXPECT_LT(max_decrypt - 4, decrypted_len);
EXPECT_TRUE(decrypt_ok);
EXPECT_FALSE(ERR_GET_REASON(ERR_peek_error()));
} else {
Expand Down

0 comments on commit f5d92c9

Please sign in to comment.