Skip to content
Snippets Groups Projects
Commit 90f93e38 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard
Browse files

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

parent a5b0d137
Branches
Tags
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment