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

Unified Diff: net/http/http_auth_handler_digest_unittest.cc

Issue 5034001: Remove static "set_fixed_cnonce" in favor of NonceGenerator objects.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Merge with trunk Created 10 years, 1 month 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
Index: net/http/http_auth_handler_digest_unittest.cc
===================================================================
--- net/http/http_auth_handler_digest_unittest.cc (revision 66330)
+++ net/http/http_auth_handler_digest_unittest.cc (working copy)
@@ -463,7 +463,7 @@
default_challenge, HttpAuth::AUTH_SERVER, origin, BoundNetLog(),
&handler);
EXPECT_EQ(OK, rv);
-
+ ASSERT_TRUE(handler.get() != NULL);
HttpAuth::ChallengeTokenizer tok_default(default_challenge.begin(),
default_challenge.end());
EXPECT_EQ(HttpAuth::AUTHORIZATION_RESULT_REJECT,

Powered by Google App Engine
This is Rietveld 408576698