ntdll/tests: Fix a test failure on W2K.

This commit is contained in:
Paul Vriens 2008-12-01 17:34:48 +01:00 committed by Alexandre Julliard
parent 768012a51a
commit b27a1bbdc7
1 changed files with 3 additions and 1 deletions

View File

@ -936,7 +936,9 @@ static void test_RtlDeleteTimer(void)
{
NTSTATUS ret;
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)