Skip to content
Snippets Groups Projects
Commit 4d01e6f3 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard
Browse files

schedsvc/tests: Actually test a return value (PVS-Studio).

parent f0d77652
No related branches found
No related tags found
No related merge requests found
......@@ -113,6 +113,7 @@ START_TEST(rpcapi)
version = 0;
hr = SchRpcHighestVersion(&version);
ok(hr == S_OK, "expected S_OK, got %#x\n", hr);
ok(version == 0x10002 /* vista */ || version == 0x10003 /* win7 */ || version == 0x10004 /* win8 */,
"wrong version %#x\n", version);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment