imm32/tests: Fix a trailing '\n' in an ok() call.

This commit is contained in:
Francois Gouget 2013-08-17 10:28:56 +02:00 committed by Alexandre Julliard
parent 1dbc3d0924
commit 120e24431d

View file

@ -698,7 +698,7 @@ static void test_ImmGetIMCLockCount(void)
count = ImmGetIMCLockCount(imc);
ok(count == 0, "expect 0, returned %d\n", count);
ic = ImmLockIMC(imc);
ok(ic != NULL, "ImmLockIMC failed\n!");
ok(ic != NULL, "ImmLockIMC failed!\n");
count = ImmGetIMCLockCount(imc);
ok(count == 1, "expect 1, returned %d\n", count);
ret = ImmUnlockIMC(imc);