quartz/tests: Make tests run on everything lower then Vista.

This commit is contained in:
Paul Vriens 2008-07-02 13:59:22 +02:00 committed by Alexandre Julliard
parent 9c3c516cc2
commit 0435574aed
1 changed files with 2 additions and 2 deletions

View File

@ -271,8 +271,8 @@ static void test_legacy_filter_registration(void)
lRet = StringFromGUID2(&clsidFilter, wszRegKey, MAX_PATH);
ok(lRet > 0, "StringFromGUID2 failed\n");
lRet = RegDeleteTreeW(hKey, wszRegKey);
ok(lRet == ERROR_SUCCESS, "RegDeleteTreeW failed with %x\n", HRESULT_FROM_WIN32(lRet));
lRet = RegDeleteKeyW(hKey, wszRegKey);
ok(lRet == ERROR_SUCCESS, "RegDeleteKeyW failed with %x\n", HRESULT_FROM_WIN32(lRet));
if (hKey) RegCloseKey(hKey);
hKey = NULL;