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

Unified Diff: chrome/test/chromedriver/test/run_py_tests.py

Issue 613683007: [chromedriver] Remove testChromeDriverRecieveAndSendLargeData (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 3 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/chromedriver/test/run_py_tests.py
diff --git a/chrome/test/chromedriver/test/run_py_tests.py b/chrome/test/chromedriver/test/run_py_tests.py
index a5c44cf69ff7612046de0ce993e26eae86559529..102ee2f940b7115c75bef8e99daf2f2a55129a72 100755
--- a/chrome/test/chromedriver/test/run_py_tests.py
+++ b/chrome/test/chromedriver/test/run_py_tests.py
@@ -53,6 +53,8 @@ _NEGATIVE_FILTER = [
_VERSION_SPECIFIC_FILTER = {}
_VERSION_SPECIFIC_FILTER['HEAD'] = [
+ # https://code.google.com/p/chromedriver/issues/detail?id=913
+ 'ChromeDriverTest.testChromeDriverReceiveAndSendLargeData',
]
_OS_SPECIFIC_FILTER = {}
@@ -718,7 +720,7 @@ class ChromeDriverTest(ChromeDriverBaseTest):
lots_of_data = self._driver.ExecuteScript(script)
self.assertEquals('0'.zfill(int(10e6)), lots_of_data)
- def testChromeDriverRecieveAndSendLargeData(self):
+ def testChromeDriverReceiveAndSendLargeData(self):
lots_of_data = '1'.zfill(int(10e6))
result = self._driver.ExecuteScript('return "%s"' % lots_of_data)
self.assertEquals(lots_of_data, result)
« 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