Module: wine Branch: master Commit: 8dee40e65aaf17337182f3181689a70795fd8c43 URL: http://source.winehq.org/git/wine.git/?a=commit;h=8dee40e65aaf17337182f31816...
Author: Dmitry Timoshkov dmitry@baikal.ru Date: Tue Apr 8 15:49:06 2014 +0900
schedsvc/tests: Fix a couple of typos.
---
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");