Commit ed364027 authored by Nicolas Le Cam's avatar Nicolas Le Cam Committed by Alexandre Julliard

crypt32/tests: Fix a failing test on win2000.

parent 094085dd
......@@ -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
......
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