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

Unified Diff: tools/auto_bisect/bisect_results_test.py

Issue 850013004: Obtain confidence score based off last known good and first known bad revision results. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« tools/auto_bisect/bisect_results.py ('K') | « tools/auto_bisect/bisect_results.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/auto_bisect/bisect_results_test.py
diff --git a/tools/auto_bisect/bisect_results_test.py b/tools/auto_bisect/bisect_results_test.py
index 25359c5e17c3d472178af0020ff931623896d7bf..b7d4cfa27f12cfef83f84bd9b7cb262a9a93bbdc 100644
--- a/tools/auto_bisect/bisect_results_test.py
+++ b/tools/auto_bisect/bisect_results_test.py
@@ -227,9 +227,9 @@ class BisectResultsTest(unittest.TestCase):
def testWarningForTooLowConfidence(self):
revision_states = self.mock_bisect_state.mock_revision_states
- revision_states[2].value = {'values': [95, 100, 90]}
- revision_states[3].value = {'values': [95, 100, 90]}
- revision_states[4].value = {'values': [95, 100, 90]}
+ revision_states[2].value = {'values': [95, 90, 90]}
RobertoCN 2015/01/14 18:50:47 Because of the new way of obtaining the confidence
RobertoCN 2015/01/30 21:23:32 Done.
+ revision_states[3].value = {'values': [95, 90, 90]}
+ revision_states[4].value = {'values': [95, 90, 90]}
results = BisectResults(self.mock_bisect_state, self.mock_depot_registry,
self.mock_opts, self.mock_warnings)
self.assertGreater(results.confidence, 0)
« tools/auto_bisect/bisect_results.py ('K') | « tools/auto_bisect/bisect_results.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698