Commit adeb76bd authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml/tests: Include leading path slash in location test array.

parent 6941232d
......@@ -47,7 +47,7 @@ static const struct location_test location_tests[] = {
"www.winehq.org:80",
"www.winehq.org",
"80",
"",
"/",
"?search",
"#hash"
},
......@@ -59,7 +59,7 @@ static const struct location_test location_tests[] = {
"www.winehq.org:80",
"www.winehq.org",
"80",
"file",
"/file",
"?search",
"#hash"
},
......@@ -71,7 +71,7 @@ static const struct location_test location_tests[] = {
"ftp.winehq.org:21",
"ftp.winehq.org",
"21",
"",
"/",
NULL,
NULL
},
......@@ -83,7 +83,7 @@ static const struct location_test location_tests[] = {
"ftp.winehq.org:21",
"ftp.winehq.org",
"21",
"file",
"/file",
NULL,
NULL
},
......@@ -240,7 +240,7 @@ static void test_pathname(IHTMLLocation *loc, const struct location_test *test)
hres = IHTMLLocation_get_pathname(loc, &str);
ok(hres == S_OK, "%s: get_pathname failed: 0x%08x\n", test->name, hres);
if(hres == S_OK)
ok(str_eq_wa(str, test->pathname),
ok(str_eq_wa(str, *test->pathname == '/' ? test->pathname + 1 : test->pathname),
"%s: expected retrieved pathname to be L\"%s\", was: %s\n",
test->name, test->pathname, wine_dbgstr_w(str));
SysFreeString(str);
......
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