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

Unified Diff: telemetry/examples/browser_tests/failed_tests.py

Issue 2700563004: [Telemetry] Migrate browser_test_runner to use typ as the test runner (Closed)
Patch Set: Created 3 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 | « telemetry/bin/run_browser_tests ('k') | telemetry/examples/browser_tests/process_tests.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: telemetry/examples/browser_tests/failed_tests.py
diff --git a/telemetry/examples/browser_tests/failed_tests.py b/telemetry/examples/browser_tests/failed_tests.py
index 42c00dcb63e948fc92640237487166c142cafe60..516d181b97e1178cf8b0302eca7310dd402ea111 100644
--- a/telemetry/examples/browser_tests/failed_tests.py
+++ b/telemetry/examples/browser_tests/failed_tests.py
@@ -17,7 +17,7 @@ class SetUpClassFailedTest(
@classmethod
def GenerateTestCases_DummyTest(cls, options):
del options # Unused.
- for i in xrange(0, 100):
+ for i in xrange(0, 3):
yield 'dummy_test_%i' % i, ()
def DummyTest(self):
@@ -34,7 +34,7 @@ class TearDownClassFailedTest(
@classmethod
def GenerateTestCases_DummyTest(cls, options):
del options # Unused.
- for i in xrange(0, 100):
+ for i in xrange(0, 3):
yield 'dummy_test_%i' % i, ()
def DummyTest(self):
« no previous file with comments | « telemetry/bin/run_browser_tests ('k') | telemetry/examples/browser_tests/process_tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698