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

winmm/tests: Fix a test failure on NT4 and W2K.

parent 7f752f7c
......@@ -1016,8 +1016,9 @@ static void test_mixerOpen()
mmsys_error(rc));
rc = mixerOpen(&mix, -1, 0, 0, 0);
ok(rc == MMSYSERR_BADDEVICEID,
"mixerOpen: MMSYSERR_BADDEVICEID expected, got %s\n",
ok(rc == MMSYSERR_BADDEVICEID ||
rc == MMSYSERR_INVALHANDLE, /* NT4/W2K */
"mixerOpen: MMSYSERR_BADDEVICEID or MMSYSERR_INVALHANDLE expected, got %s\n",
mmsys_error(rc));
for (d = 0; d < ndev; d++) {
......
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