[1/2] schedsvc/tests: Fix a couple of typos.

Dmitry Timoshkov dmitry at baikal.ru
Tue Apr 8 01:49:06 CDT 2014


---
 dlls/schedsvc/tests/rpcapi.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/schedsvc/tests/rpcapi.c b/dlls/schedsvc/tests/rpcapi.c
index e1d2101..6c555c8 100644
--- a/dlls/schedsvc/tests/rpcapi.c
+++ b/dlls/schedsvc/tests/rpcapi.c
@@ -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");
-- 
1.9.1




More information about the wine-patches mailing list