Commit 305ce2f6 authored by Felix Nawothnig's avatar Felix Nawothnig Committed by Alexandre Julliard

Fix registry tests on Win95.

parent 802b17c8
......@@ -516,8 +516,10 @@ static void test_reg_delete_key(void)
DWORD ret;
ret = RegDeleteKey(hkey_main, NULL);
ok(ret == ERROR_INVALID_PARAMETER || ret == ERROR_ACCESS_DENIED,
"expected ERROR_INVALID_PARAMETER or ERROR_ACCESS_DENIED, got %ld\n", ret);
ok(ret == ERROR_INVALID_PARAMETER ||
ret == ERROR_ACCESS_DENIED ||
ret == ERROR_BADKEY, /* Win95 */
"ret=%ld\n", ret);
}
static void test_reg_save_key(void)
......
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