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

Unified Diff: appengine/findit/waterfall/flake/test/recursive_flake_pipeline_test.py

Issue 2630433002: Findit] Flake Checker: Pipeline to trigger try jobs to identify flake culprits (Closed)
Patch Set: Addressing comments Created 3 years, 11 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/waterfall/flake/test/recursive_flake_pipeline_test.py
diff --git a/appengine/findit/waterfall/flake/test/recursive_flake_pipeline_test.py b/appengine/findit/waterfall/flake/test/recursive_flake_pipeline_test.py
index 64c89346be4478f62b964db2a65b6cddfe086408..ed4e5616512976c00c4e96ad6f9c0afc1ef46cea 100644
--- a/appengine/findit/waterfall/flake/test/recursive_flake_pipeline_test.py
+++ b/appengine/findit/waterfall/flake/test/recursive_flake_pipeline_test.py
@@ -465,13 +465,6 @@ class RecursiveFlakePipelineTest(wf_testcase.WaterfallTestCase):
master_name, builder_name, master_build_number, step_name, test_name)
self.assertEqual(analysis_status.COMPLETED, analysis.status)
- def testUpdateAnalysisUponCompletionFound(self):
- analysis = MasterFlakeAnalysis.Create('m', 'b', 123, 's', 't')
- recursive_flake_pipeline._UpdateAnalysisStatusUponCompletion(
- analysis, 100, analysis_status.COMPLETED, None)
- self.assertEqual(analysis.suspected_flake_build_number, 100)
- self.assertEqual(analysis.result_status, result_status.FOUND_UNTRIAGED)
-
def testUpdateAnalysisUponCompletionError(self):
expected_error = {
'code': 1,

Powered by Google App Engine
This is Rietveld 408576698