crypt32/tests: Fix a failing test on win2000.
This commit is contained in:
parent
094085dd7e
commit
ed364027e7
|
@ -452,7 +452,7 @@ static void test_format_object(void)
|
|||
ret = pCryptFormatObject(X509_ASN_ENCODING, 0, 0, NULL, NULL,
|
||||
encodedBigInt, sizeof(encodedBigInt), str, &size);
|
||||
ok(ret, "CryptFormatObject failed: %d\n", GetLastError());
|
||||
ok(!lstrcmpW(str, encodedBigIntStr), "unexpected format string\n");
|
||||
ok(!lstrcmpiW(str, encodedBigIntStr), "unexpected format string\n");
|
||||
HeapFree(GetProcessHeap(), 0, str);
|
||||
}
|
||||
/* When called with the default encoding type for any undefined struct
|
||||
|
|
Loading…
Reference in New Issue