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

Unified Diff: tools/auto_bisect/bisect_perf_regression_test.py

Issue 1779943002: Fix path error in getting depot dir. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 | « tools/auto_bisect/bisect_perf_regression.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_perf_regression_test.py
diff --git a/tools/auto_bisect/bisect_perf_regression_test.py b/tools/auto_bisect/bisect_perf_regression_test.py
index 918334b2ac5fb5de23620344ecfc64b7fc1ba1a5..22ad7c37fbb1394ec700a59c7704d07c66c28717 100644
--- a/tools/auto_bisect/bisect_perf_regression_test.py
+++ b/tools/auto_bisect/bisect_perf_regression_test.py
@@ -370,8 +370,9 @@ class BisectPerfRegressionTest(unittest.TestCase):
'try_job_id': 1234,
})
opts = bisect_perf_regression.BisectOptions.FromDict(options_dict)
+ bisect_instance = _GetBisectPerformanceMetricsInstance(options_dict)
results = _SampleBisecResult(opts)
- bisect_perf_regression._PostBisectResults(results, opts, os.getcwd())
+ bisect_instance.PostBisectResults(results)
call_args = _GetMockCallArg(mock_urlopen, 0)
self.assertIsNotNone(call_args)
« no previous file with comments | « tools/auto_bisect/bisect_perf_regression.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698