Commit 90f93e38 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

msxml3/tests: Fix the expected values in some ok() messages.

parent a5b0d137
......@@ -4580,9 +4580,9 @@ static void test_mxattr_addAttribute(void)
hr = ISAXAttributes_getLength(saxattr, &len);
EXPECT_HR(hr, S_OK);
if (table->hr == S_OK)
ok(len == 1, "%d: got %d length, expected 0\n", i, len);
ok(len == 1, "%d: got %d length, expected 1\n", i, len);
else
ok(len == 0, "%d: got %d length, expected 1\n", i, len);
ok(len == 0, "%d: got %d length, expected 0\n", i, len);
ISAXAttributes_Release(saxattr);
IMXAttributes_Release(mxattr);
......
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