fusion/tests: Fix the last test failure on .NET 1.x.

This commit is contained in:
Paul Vriens 2009-02-28 21:57:39 +01:00 committed by Alexandre Julliard
parent 7a435c01ca
commit d929ea739a
1 changed files with 3 additions and 1 deletions

View File

@ -610,7 +610,9 @@ static void test_CreateAssemblyNameObject(void)
ok(hr == FUSION_E_INVALID_NAME ||
broken(hr == S_OK), /* .NET 1.x */
"Expected FUSION_E_INVALID_NAME, got %08x\n", hr);
ok(hi == 0, "Expected 0, got %08x\n", hi);
ok(hi == 0 ||
broken(hi == 0x10005), /* .NET 1.x */
"Expected 0, got %08x\n", hi);
ok(lo == 0, "Expected 0, got %08x\n", lo);
test_assembly_name_props(name, badvername);