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

Unified Diff: net/base/cookie_monster_unittest.cc

Issue 6969075: MAC Cookies (patch 5 of N) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 7 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
Index: net/base/cookie_monster_unittest.cc
===================================================================
--- net/base/cookie_monster_unittest.cc (revision 85309)
+++ net/base/cookie_monster_unittest.cc (working copy)
@@ -748,12 +748,10 @@
EXPECT_EQ("A", cookie_infos[0].name);
EXPECT_EQ("", cookie_infos[0].mac_key);
EXPECT_EQ("", cookie_infos[0].mac_algorithm);
- EXPECT_EQ(url_google.spec(), cookie_infos[0].source);
EXPECT_EQ("C", cookie_infos[1].name);
EXPECT_EQ("390jfn0awf3", cookie_infos[1].mac_key);
EXPECT_EQ("hmac-sha-1", cookie_infos[1].mac_algorithm);
- EXPECT_EQ(url_google.spec(), cookie_infos[1].source);
}
namespace {

Powered by Google App Engine
This is Rietveld 408576698