| Index: url/url_parse_unittest.cc
|
| diff --git a/url/url_parse_unittest.cc b/url/url_parse_unittest.cc
|
| index ad47616128d510b15e81173069d1c845fc725034..c693f0c0d6d603fed346faa316d4c39c715019a2 100644
|
| --- a/url/url_parse_unittest.cc
|
| +++ b/url/url_parse_unittest.cc
|
| @@ -359,15 +359,13 @@ TEST(URLParser, PathURL) {
|
| url_parse::ParsePathURL(url, static_cast<int>(strlen(url)), &parsed);
|
|
|
| EXPECT_TRUE(ComponentMatches(url, path_cases[i].scheme, parsed.scheme));
|
| - EXPECT_TRUE(ComponentMatches(url, path_cases[i].path, parsed.path));
|
| + EXPECT_TRUE(ComponentMatches(url, path_cases[i].path, parsed.GetContent()));
|
|
|
| // The remaining components are never used for path urls.
|
| ExpectInvalidComponent(parsed.username);
|
| ExpectInvalidComponent(parsed.password);
|
| ExpectInvalidComponent(parsed.host);
|
| ExpectInvalidComponent(parsed.port);
|
| - ExpectInvalidComponent(parsed.query);
|
| - ExpectInvalidComponent(parsed.ref);
|
| }
|
| }
|
|
|
|
|