lz32/tests: Fix a test failure on Win9x.

oldstable
Paul Vriens 2008-11-28 16:46:47 +01:00 committed by Alexandre Julliard
parent 095ba950d6
commit 4b643733fc
1 changed files with 1 additions and 1 deletions

View File

@ -371,7 +371,7 @@ static void test_LZOpenFileA(void)
ok(test.cBytes == sizeof(OFSTRUCT),
"LZOpenFileA set test.cBytes to %d\n", test.cBytes);
ok(test.nErrCode == ERROR_SUCCESS ||
test.nErrCode == ERROR_FILE_NOT_FOUND, /* win9x */
broken(test.nErrCode != ERROR_SUCCESS), /* win9x */
"LZOpenFileA set test.nErrCode to %d\n", test.nErrCode);
ok(lstrcmpA(test.szPathName, expected) == 0,
"LZOpenFileA returned '%s', but was expected to return '%s'\n",