Skip to content

Commit 1d0d500

Browse files
committed
Fix from review
1 parent 2bb04be commit 1d0d500

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

tests/api/test_pkcs12.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -335,6 +335,9 @@ int test_wc_PKCS12_encrypted_content_bounds(void)
335335
ExpectIntEQ(outCertSz, inCertSz);
336336
ExpectNotNull(outCaList);
337337
ExpectIntEQ(outCaList->bufferSz, inCa.bufferSz);
338+
ExpectIntEQ(XMEMCMP(outKey, inKey, inKeySz), 0);
339+
ExpectIntEQ(XMEMCMP(outCert, inCert, inCertSz), 0);
340+
ExpectIntEQ(XMEMCMP(outCaList->buffer, inCa.buffer, inCa.bufferSz), 0);
338341

339342
/* Clean up */
340343
XFREE(outKey, NULL, DYNAMIC_TYPE_PUBLIC_KEY);

0 commit comments

Comments
 (0)