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

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

Issue 10866013: Convert the browsing_data pyauto tests to chrome tests. Remove the ClearBrowsingData automation cod… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix flake in unittest harness Created 8 years, 4 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: chrome/test/functional/databases.py
===================================================================
--- chrome/test/functional/databases.py (revision 152704)
+++ chrome/test/functional/databases.py (working copy)
@@ -301,18 +301,5 @@
self.NavigateToURL(self.TEST_PAGE_URL)
self.assertEquals(['text'], self._GetRecords())
- def testDeleteAndUpdateDatabase(self):
- """Verify can modify database after deleting it."""
- self.NavigateToURL(self.TEST_PAGE_URL)
- self._CreateTable()
- self._InsertRecord('text')
- # ClearBrowsingData doesn't return and times out
- self.ClearBrowsingData(['COOKIES'], 'EVERYTHING')
- self.NavigateToURL(self.TEST_PAGE_URL)
- self._CreateTable()
- self._InsertRecord('text2')
- self.assertEquals(['text2'], self._GetRecords())
-
-
if __name__ == '__main__':
pyauto_functional.Main()

Powered by Google App Engine
This is Rietveld 408576698