kernel32/tests: Fix a typo.

Signed-off-by: André Hentschel <nerv@dawncrow.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
André Hentschel 2016-06-22 23:35:06 +02:00 committed by Alexandre Julliard
parent bbb9bbdbdb
commit fdd953c2aa
1 changed files with 1 additions and 1 deletions

View File

@ -2460,7 +2460,7 @@ static void test_LocaleNameToLCID(void)
SetLastError(0xdeadbeef);
lcid = pLocaleNameToLCID(fooW, 0);
ok(!lcid && GetLastError() == ERROR_INVALID_PARAMETER,
"Expected lcid == 0, got got %08x, error %d\n", lcid, GetLastError());
"Expected lcid == 0, got %08x, error %d\n", lcid, GetLastError());
/* english neutral name */
lcid = pLocaleNameToLCID(enW, 0);