crypt32/tests: Fix a typo in ok() message.

Signed-off-by: Gijs Vermeulen <gijsvrm@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Gijs Vermeulen 2019-01-14 17:46:49 +01:00 committed by Alexandre Julliard
parent 870db3b25a
commit 8e0139af2a
1 changed files with 1 additions and 1 deletions

View File

@ -541,7 +541,7 @@ static void testStoresInCollection(void)
cert2 = CertCreateCertificateContext(X509_ASN_ENCODING, signedBigCert, sizeof(signedBigCert));
ok (cert2 != NULL, "Failed to create cert context %x\n", GetLastError());
ret = CertAddCertificateContextToStore(collection, cert2, CERT_STORE_ADD_REPLACE_EXISTING, NULL);
ok (ret, "Failed to add cert3 to the store %x\n",GetLastError());
ok (ret, "Failed to add cert2 to the store %x\n",GetLastError());
/** checking certificates in the stores */
tcert1 = CertEnumCertificatesInStore(ro_store, 0);