Commit 132937a4 authored by Julian Rüger's avatar Julian Rüger Committed by Alexandre Julliard

ntprint/tests: Fix some typos.

parent 4d22dc44
......@@ -71,7 +71,7 @@ static void test_PSetupCreateMonitorInfo(VOID)
SetLastError(0xdeadbeef);
mi = pPSetupCreateMonitorInfo(NULL, NULL, NULL);
if (!mi && (GetLastError() == RPC_S_SERVER_UNAVAILABLE)) {
win_skip("The Service 'Spooler' is required for many test\n");
win_skip("The service 'Spooler' is required for many tests\n");
return;
}
ok( mi != NULL, "got %p with %u (expected '!= NULL')\n", mi, GetLastError());
......@@ -101,7 +101,7 @@ static void test_PSetupDestroyMonitorInfo(VOID)
SetLastError(0xdeadbeef);
mi = pPSetupCreateMonitorInfo(NULL, NULL, NULL);
if (!mi && (GetLastError() == RPC_S_SERVER_UNAVAILABLE)) {
win_skip("The Service 'Spooler' is required for many test\n");
win_skip("The service 'Spooler' is required for many tests\n");
return;
}
ok( mi != NULL, "got %p with %u (expected '!= NULL')\n", mi, GetLastError());
......@@ -113,7 +113,7 @@ static void test_PSetupDestroyMonitorInfo(VOID)
/* lasterror is returned */
trace("returned with %u\n", GetLastError());
/* Try to destroy the handle twice crash with native ntprint.dll */
/* Trying to destroy the handle twice crashes with native ntprint.dll */
if (0) {
SetLastError(0xdeadbeef);
pPSetupDestroyMonitorInfo(mi);
......
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