Commit 8d72b37d authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

cryptui/tests: Fix typos.

parent 73c41f1e
...@@ -559,7 +559,7 @@ static void test_crypt_ui_wiz_import(void) ...@@ -559,7 +559,7 @@ static void test_crypt_ui_wiz_import(void)
crl = CertEnumCRLsInStore(store, crl); crl = CertEnumCRLsInStore(store, crl);
if (crl) if (crl)
count++; count++;
} while (cert); } while (crl);
ok(count == 1, "expected 1 CRL, got %d\n", count); ok(count == 1, "expected 1 CRL, got %d\n", count);
} }
CertCloseStore(store, 0); CertCloseStore(store, 0);
...@@ -595,7 +595,7 @@ static void test_crypt_ui_wiz_import(void) ...@@ -595,7 +595,7 @@ static void test_crypt_ui_wiz_import(void)
crl = CertEnumCRLsInStore(store, crl); crl = CertEnumCRLsInStore(store, crl);
if (crl) if (crl)
count++; count++;
} while (cert); } while (crl);
ok(count == 0, "expected 0 CRLs, got %d\n", count); ok(count == 0, "expected 0 CRLs, got %d\n", count);
} }
SetLastError(0xdeadbeef); SetLastError(0xdeadbeef);
...@@ -635,7 +635,7 @@ static void test_crypt_ui_wiz_import(void) ...@@ -635,7 +635,7 @@ static void test_crypt_ui_wiz_import(void)
crl = CertEnumCRLsInStore(store, crl); crl = CertEnumCRLsInStore(store, crl);
if (crl) if (crl)
count++; count++;
} while (cert); } while (crl);
ok(count == 1, "expected 1 CRL, got %d\n", count); ok(count == 1, "expected 1 CRL, got %d\n", count);
} }
SetLastError(0xdeadbeef); SetLastError(0xdeadbeef);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment