Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3039)

Unified Diff: net/url_request/url_request_context_builder_unittest.cc

Issue 1157333005: [net/http auth] Use strings to identify authentication schemes. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/spdy/spdy_proxy_client_socket_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/url_request/url_request_context_builder_unittest.cc
diff --git a/net/url_request/url_request_context_builder_unittest.cc b/net/url_request/url_request_context_builder_unittest.cc
index e37b51e6b364cebebe99f3d1f27841644517446c..43f02756da7f94e04a2b96977b41715111189c94 100644
--- a/net/url_request/url_request_context_builder_unittest.cc
+++ b/net/url_request/url_request_context_builder_unittest.cc
@@ -97,7 +97,7 @@ TEST_F(URLRequestContextBuilderTest, ExtraHttpAuthHandlerFactory) {
MockHttpAuthHandlerFactory* mock_factory_basic =
new MockHttpAuthHandlerFactory(kBasicReturnCode);
scoped_ptr<HttpAuthHandler> handler;
- builder_.add_http_auth_handler_factory("ExtraScheme", mock_factory_basic);
+ builder_.add_http_auth_handler_factory("extrascheme", mock_factory_basic);
scoped_ptr<URLRequestContext> context(builder_.Build());
// Verify that a handler is returned for and added scheme.
EXPECT_EQ(kBasicReturnCode,
« no previous file with comments | « net/spdy/spdy_proxy_client_socket_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698