schedsvc/tests: Fix a couple of typos.

This commit is contained in:
Dmitry Timoshkov 2014-04-08 15:49:06 +09:00 committed by Alexandre Julliard
parent 2886471db1
commit 8dee40e65a

View File

@ -269,7 +269,7 @@ START_TEST(rpcapi)
count = 0xdeadbeef;
names = NULL;
hr = SchRpcEnumFolders(Wine, 0, &start_index, 0, &count, &names);
ok(hr == S_OK, "expected S_FALSE, got %#x\n", hr);
ok(hr == S_OK, "expected S_OK, got %#x\n", hr);
ok(count == 2, "expected 2, got %u\n", count);
ok(start_index == 2, "expected 2, got %u\n", start_index);
ok(names != NULL, "names should not be NULL\n");
@ -381,7 +381,7 @@ START_TEST(rpcapi)
count = 0xdeadbeef;
names = NULL;
hr = SchRpcEnumTasks(Wine, 0, &start_index, 0, &count, &names);
ok(hr == S_OK, "expected S_FALSE, got %#x\n", hr);
ok(hr == S_OK, "expected S_OK, got %#x\n", hr);
ok(count == 2, "expected 2, got %u\n", count);
ok(start_index == 2, "expected 2, got %u\n", start_index);
ok(names != NULL, "names should not be NULL\n");