diff options
author | cira@chromium.org <cira@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-21 16:35:17 +0000 |
---|---|---|
committer | cira@chromium.org <cira@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-21 16:35:17 +0000 |
commit | 8f2fc94a7bf7af3f820316aa32045ad74ccc7f29 (patch) | |
tree | 117fbd622058c65ead4e0e02f955b1aa9747c1da /net | |
parent | 534c59086c951a0687fce53c2a8de49a2100867e (diff) | |
download | chromium_src-8f2fc94a7bf7af3f820316aa32045ad74ccc7f29.zip chromium_src-8f2fc94a7bf7af3f820316aa32045ad74ccc7f29.tar.gz chromium_src-8f2fc94a7bf7af3f820316aa32045ad74ccc7f29.tar.bz2 |
Pulling new version of googleurl into the tree.
Fixing a net_unittest case that wasn't updated when googleurl code was changed (but not down integrated to chrome).
BUG=5490
Review URL: http://codereview.chromium.org/174093
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23965 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r-- | net/http/http_network_transaction_unittest.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/net/http/http_network_transaction_unittest.cc b/net/http/http_network_transaction_unittest.cc index d19df2c..9993b1d 100644 --- a/net/http/http_network_transaction_unittest.cc +++ b/net/http/http_network_transaction_unittest.cc @@ -3535,11 +3535,9 @@ TEST_F(HttpNetworkTransactionTest, GetIdentifyFromUrl) { L"use rname", L"password", }, - { // The URL canonicalizer for userinfo does not recognize non-ascii - // escapes it seems... So things like %00 will NOT be unescapable, - // since they are canonicalized by escaping the %... + { // Keep %00 as is. "http://use%00rname:password@google.com", - L"use%2500rname", + L"use%00rname", L"password", }, { // Use a '+' in the username. |