Commit 352a1bdb authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent f2c5f6a2
......@@ -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);
......
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