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

shlwapi/tests: Fix a failure on Win9x and NT4.

parent fbdb78c8
...@@ -130,7 +130,9 @@ static void test_getstring_basic(void) ...@@ -130,7 +130,9 @@ static void test_getstring_basic(void)
hr = pAssocQueryStringW(0, ASSOCSTR_FRIENDLYAPPNAME, dotHtml, open, NULL, hr = pAssocQueryStringW(0, ASSOCSTR_FRIENDLYAPPNAME, dotHtml, open, NULL,
&len); &len);
expect_hr(S_FALSE, hr); ok(hr == S_FALSE ||
hr == HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND), /* Win9x/NT4 */
"Unexpected result : %08x\n", hr);
if (hr != S_FALSE) if (hr != S_FALSE)
{ {
HeapFree(GetProcessHeap(), 0, executableName); HeapFree(GetProcessHeap(), 0, executableName);
......
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