pdh/tests: Add missing '\n' to ok() calls.

This commit is contained in:
Francois Gouget 2007-08-08 10:40:47 +02:00 committed by Alexandre Julliard
parent bb22543125
commit e50f16e579
1 changed files with 2 additions and 2 deletions

View File

@ -374,14 +374,14 @@ static void test_PdhGetRawCounterValue( void )
ret = PdhGetRawCounterValue( counter, NULL, &value );
ok(ret == ERROR_SUCCESS, "PdhGetRawCounterValue failed 0x%08x\n", ret);
ok(value.CStatus == ERROR_SUCCESS, "expected ERROR_SUCCESS got %x", value.CStatus);
ok(value.CStatus == ERROR_SUCCESS, "expected ERROR_SUCCESS got %x\n", value.CStatus);
ret = PdhCollectQueryData( query );
ok(ret == ERROR_SUCCESS, "PdhCollectQueryData failed 0x%08x\n", ret);
ret = PdhGetRawCounterValue( counter, NULL, &value );
ok(ret == ERROR_SUCCESS, "PdhGetRawCounterValue failed 0x%08x\n", ret);
ok(value.CStatus == ERROR_SUCCESS, "expected ERROR_SUCCESS got %x", value.CStatus);
ok(value.CStatus == ERROR_SUCCESS, "expected ERROR_SUCCESS got %x\n", value.CStatus);
ret = PdhCloseQuery( query );
ok(ret == ERROR_SUCCESS, "PdhCloseQuery failed 0x%08x\n", ret);