Fix typo in test: cookies.CookiesTest.testCookiesHttps

TBR=jochen
BUG=
TEST=cookies.CookiesTest.testCookiesHttps

Review URL: https://chromiumcodereview.appspot.com/9584029

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124753 0039d316-1c4b-4281-b951-d872f2087c98
parent 54089831
...@@ -80,7 +80,7 @@ class CookiesTest(pyauto.PyUITest): ...@@ -80,7 +80,7 @@ class CookiesTest(pyauto.PyUITest):
msg='Cookie did not exist after loading %s' % https_url) msg='Cookie did not exist after loading %s' % https_url)
# Restart and verify that the cookie persists. # Restart and verify that the cookie persists.
self.RestartBrowser(clear_profile=False) self.RestartBrowser(clear_profile=False)
self.assertTrue(cookie_data, self.GetCookie(pyauto.GURL(https_url)), self.assertEqual(cookie_data, self.GetCookie(pyauto.GURL(https_url)),
msg='Cookie did not persist after restarting session.') msg='Cookie did not persist after restarting session.')
def testCookiesFile(self): def testCookiesFile(self):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment