cryptui/tests: Fix typos.
This commit is contained in:
parent
73c41f1ef6
commit
8d72b37dac
|
@ -559,7 +559,7 @@ static void test_crypt_ui_wiz_import(void)
|
|||
crl = CertEnumCRLsInStore(store, crl);
|
||||
if (crl)
|
||||
count++;
|
||||
} while (cert);
|
||||
} while (crl);
|
||||
ok(count == 1, "expected 1 CRL, got %d\n", count);
|
||||
}
|
||||
CertCloseStore(store, 0);
|
||||
|
@ -595,7 +595,7 @@ static void test_crypt_ui_wiz_import(void)
|
|||
crl = CertEnumCRLsInStore(store, crl);
|
||||
if (crl)
|
||||
count++;
|
||||
} while (cert);
|
||||
} while (crl);
|
||||
ok(count == 0, "expected 0 CRLs, got %d\n", count);
|
||||
}
|
||||
SetLastError(0xdeadbeef);
|
||||
|
@ -635,7 +635,7 @@ static void test_crypt_ui_wiz_import(void)
|
|||
crl = CertEnumCRLsInStore(store, crl);
|
||||
if (crl)
|
||||
count++;
|
||||
} while (cert);
|
||||
} while (crl);
|
||||
ok(count == 1, "expected 1 CRL, got %d\n", count);
|
||||
}
|
||||
SetLastError(0xdeadbeef);
|
||||
|
|
Loading…
Reference in New Issue