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

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

Issue 2722243005: Ensure manifest exists in Port._wpt_manifest. (Closed)
Patch Set: Call ensure manifest in rebaseline-cl Created 3 years, 10 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 83dcf866376660ae54767665dfa81920423ae0aa..a39799df67c8c8fda8d5759600473cd8fa805c9f 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
@@ -228,7 +228,16 @@ class RebaselineCLTest(BaseTestCase, LoggingTestCase):
])
self.assertEqual(
self.tool.executive.calls,
- [['git', 'cl', 'try', '-b', 'MOCK Try Linux']])
+ [
+ [
+ 'python',
+ '/mock-checkout/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/wpt/wpt/manifest',
+ '--work',
+ '--tests-root',
+ '/mock-checkout/third_party/WebKit/LayoutTests/external/wpt'
+ ],
+ ['git', 'cl', 'try', '-b', 'MOCK Try Linux']
+ ])
def test_rebaseline_calls(self):
"""Tests the list of commands that are invoked when rebaseline is called."""

Powered by Google App Engine
This is Rietveld 408576698