advapi32/tests: Add a trailing '\n' to ok() calls.

This commit is contained in:
Francois Gouget 2008-12-28 10:37:09 +01:00 committed by Alexandre Julliard
parent f2c5f6a288
commit 352a1bdb0b

View file

@ -156,9 +156,9 @@ static void test_CredReadDomainCredentialsA(void)
* does not check for NULL output pointers and try to zero them out early */
#if 0
ok(!pCredReadDomainCredentialsA(&info, 0, NULL, &creds) &&
GetLastError() == ERROR_INVALID_PARAMETER, "!");
GetLastError() == ERROR_INVALID_PARAMETER, "!\n");
ok(!pCredReadDomainCredentialsA(&info, 0, &count, NULL) &&
GetLastError() == ERROR_INVALID_PARAMETER, "!");
GetLastError() == ERROR_INVALID_PARAMETER, "!\n");
#endif
SetLastError(0xdeadbeef);