Commit b27a1bbd authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

ntdll/tests: Fix a test failure on W2K.

parent 768012a5
...@@ -936,7 +936,9 @@ static void test_RtlDeleteTimer(void) ...@@ -936,7 +936,9 @@ static void test_RtlDeleteTimer(void)
{ {
NTSTATUS ret; NTSTATUS ret;
ret = pRtlDeleteTimer(NULL, NULL, NULL); ret = pRtlDeleteTimer(NULL, NULL, NULL);
ok(ret == STATUS_INVALID_PARAMETER_1, "expected STATUS_INVALID_PARAMETER_1, got %x\n", ret); ok(ret == STATUS_INVALID_PARAMETER_1 ||
ret == STATUS_INVALID_PARAMETER, /* W2K */
"expected STATUS_INVALID_PARAMETER_1 or STATUS_INVALID_PARAMETER, got %x\n", ret);
} }
START_TEST(rtl) START_TEST(rtl)
......
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