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

Unified Diff: chrome/test/functional/cookies.py

Issue 9584029: Fix typo in test: cookies.CookiesTest.testCookiesHttps (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 10 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/functional/cookies.py
diff --git a/chrome/test/functional/cookies.py b/chrome/test/functional/cookies.py
index ba73042c46c928cab103382981d4e67c908d1cb4..cf98edf163f676978e4ccce400a2c0d86f247f77 100755
--- a/chrome/test/functional/cookies.py
+++ b/chrome/test/functional/cookies.py
@@ -80,8 +80,8 @@ class CookiesTest(pyauto.PyUITest):
msg='Cookie did not exist after loading %s' % https_url)
# Restart and verify that the cookie persists.
self.RestartBrowser(clear_profile=False)
- self.assertTrue(cookie_data, self.GetCookie(pyauto.GURL(https_url)),
- msg='Cookie did not persist after restarting session.')
+ self.assertEqual(cookie_data, self.GetCookie(pyauto.GURL(https_url)),
+ msg='Cookie did not persist after restarting session.')
def testCookiesFile(self):
"""Test cookies set from file:// url for incognito and regular windows."""
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698