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

This commit is contained in:
Nikolay Sivov 2009-01-08 12:00:00 +03:00 committed by Alexandre Julliard
parent f6f52021f8
commit 3950752682
1 changed files with 1 additions and 1 deletions

View File

@ -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));
}