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

Unified Diff: appengine/findit/crash/test/detect_regression_range_test.py

Issue 2414523002: [Findit] Reorganizing findit_for_*.py (Closed)
Patch Set: Finally fixed the mock tests! Created 4 years, 2 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: appengine/findit/crash/test/detect_regression_range_test.py
diff --git a/appengine/findit/crash/test/detect_regression_range_test.py b/appengine/findit/crash/test/detect_regression_range_test.py
index 2abf335c8cfef0509f68b1bb97ce24a28a6ab5e6..25b86eb1d0ffb62a90cb465045add0d442082734 100644
--- a/appengine/findit/crash/test/detect_regression_range_test.py
+++ b/appengine/findit/crash/test/detect_regression_range_test.py
@@ -12,11 +12,9 @@ class DetectRegressionRangeTest(testing.AppengineTestCase):
def _VerifyCasesForDetectRegressonRange(self, cases):
for case, expected_result in cases:
result = DetectRegressionRange(case)
-
- self.assertEqual(result, expected_result, 'Detected spikes of %s should '
- 'be %s, instead of %s' % (repr(case),
- expected_result,
- result))
+ self.assertEqual(result, expected_result,
+ 'Detected spikes of %s should be %s, instead of %s'
+ % (repr(case), expected_result, result))
# TODO(wrengr): make this test more comprehensive.
« no previous file with comments | « appengine/findit/crash/test/crash_test_suite.py ('k') | appengine/findit/crash/test/findit_for_chromecrash_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698