cryptui/tests: Fix typos.

oldstable
Juan Lang 2009-11-04 16:52:47 -08:00 committed by Alexandre Julliard
parent 73c41f1ef6
commit 8d72b37dac
1 changed files with 3 additions and 3 deletions

View File

@ -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);