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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline_cl_unittest.py

Issue 2740103008: Change rebaseline-cl and wpt-import to add master name when triggering jobs. (Closed)
Patch Set: git cl try Created 3 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
Index: third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline_cl_unittest.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline_cl_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline_cl_unittest.py
index 325db465e00ccb568508e3012611945492a896a0..8e15b1105678d78e0f6937f9f6048af01e870d8c 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline_cl_unittest.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline_cl_unittest.py
@@ -262,7 +262,7 @@ class RebaselineCLTest(BaseTestCase, LoggingTestCase):
'--tests-root',
'/mock-checkout/third_party/WebKit/LayoutTests/external/wpt'
],
- ['git', 'cl', 'try', '-b', 'MOCK Try Linux']
+ ['git', 'cl', 'try', '-m', 'tryserver.blink', '-b', 'MOCK Try Linux']
])
def test_rebaseline_calls(self):
@@ -293,7 +293,7 @@ class RebaselineCLTest(BaseTestCase, LoggingTestCase):
self.command.trigger_builds(['MOCK Try Linux', 'MOCK Try Win'])
self.assertEqual(
self.tool.executive.calls,
- [['git', 'cl', 'try', '-b', 'MOCK Try Linux', '-b', 'MOCK Try Win']])
+ [['git', 'cl', 'try', '-m', 'tryserver.blink', '-b', 'MOCK Try Linux', '-b', 'MOCK Try Win']])
self.assertLog([
'INFO: Triggering try jobs for:\n',
'INFO: MOCK Try Linux\n',

Powered by Google App Engine
This is Rietveld 408576698