Commit 8e5b8600 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

schannel/tests: Fix test on win8.1.

parent d799a664
......@@ -216,8 +216,9 @@ static void testGetInfo(void)
if (status == STATUS_SUCCESS)
{
ok(PackageInfo.fCapabilities == LSA_BASE_CAPS, "fCapabilities: 0x%x\n",
PackageInfo.fCapabilities);
ok(PackageInfo.fCapabilities == LSA_BASE_CAPS ||
PackageInfo.fCapabilities == (LSA_BASE_CAPS|SECPKG_FLAG_APPCONTAINER_PASSTHROUGH),
"fCapabilities: 0x%x\n", PackageInfo.fCapabilities);
ok(PackageInfo.wVersion == 1, "wVersion: %d\n", PackageInfo.wVersion);
ok(PackageInfo.wRPCID == 14, "wRPCID: %d\n", PackageInfo.wRPCID);
ok(PackageInfo.cbMaxToken == 0x4000 ||
......
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