Commit 39507526 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

oleaut32/tests: Fix copy/paste typo in test output.

parent f6f52021
......@@ -5060,7 +5060,7 @@ static void test_SysStringByteLen(void)
BSTR str = GetBSTR(&bstr);
bstr.dwLen = 0;
ok (SysStringByteLen(str) == 0, "Expected dwLen 0, got %d\n", SysStringLen(str));
ok (SysStringByteLen(str) == 0, "Expected dwLen 0, got %d\n", SysStringByteLen(str));
bstr.dwLen = 2;
ok (SysStringByteLen(str) == 2, "Expected dwLen 2, got %d\n", SysStringByteLen(str));
}
......
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