Commit 8dee40e6 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

schedsvc/tests: Fix a couple of typos.

parent 2886471d
...@@ -269,7 +269,7 @@ START_TEST(rpcapi) ...@@ -269,7 +269,7 @@ START_TEST(rpcapi)
count = 0xdeadbeef; count = 0xdeadbeef;
names = NULL; names = NULL;
hr = SchRpcEnumFolders(Wine, 0, &start_index, 0, &count, &names); 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(count == 2, "expected 2, got %u\n", count);
ok(start_index == 2, "expected 2, got %u\n", start_index); ok(start_index == 2, "expected 2, got %u\n", start_index);
ok(names != NULL, "names should not be NULL\n"); ok(names != NULL, "names should not be NULL\n");
...@@ -381,7 +381,7 @@ START_TEST(rpcapi) ...@@ -381,7 +381,7 @@ START_TEST(rpcapi)
count = 0xdeadbeef; count = 0xdeadbeef;
names = NULL; names = NULL;
hr = SchRpcEnumTasks(Wine, 0, &start_index, 0, &count, &names); 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(count == 2, "expected 2, got %u\n", count);
ok(start_index == 2, "expected 2, got %u\n", start_index); ok(start_index == 2, "expected 2, got %u\n", start_index);
ok(names != NULL, "names should not be NULL\n"); ok(names != NULL, "names should not be NULL\n");
......
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