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

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

Issue 2276713002: Remove Command.bind_to_tool. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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/queries_unittest.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/queries_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/queries_unittest.py
index 6d88cc1ce1d8b20d26ff1cfd6953a214a7b09b15..d651a562b625aeb6233f680d0cdacbf59d873418 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/queries_unittest.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/queries_unittest.py
@@ -51,7 +51,6 @@ class PrintExpectationsTest(unittest.TestCase):
'test-win-win10', 'test-win-win7'
]
command = PrintExpectations()
- command.bind_to_tool(tool)
oc = OutputCapture()
try:
@@ -140,7 +139,6 @@ class PrintBaselinesTest(unittest.TestCase):
def test_basic(self):
command = PrintBaselines()
- command.bind_to_tool(self.tool)
self.capture_output()
options = optparse.Values({'all': False, 'include_virtual_tests': False, 'csv': False, 'platform': None})
command.execute(options, ['passes/text.html'], self.tool)
@@ -152,7 +150,6 @@ class PrintBaselinesTest(unittest.TestCase):
def test_multiple(self):
command = PrintBaselines()
- command.bind_to_tool(self.tool)
self.capture_output()
options = optparse.Values({'all': False, 'include_virtual_tests': False, 'csv': False, 'platform': 'test-win-*'})
command.execute(options, ['passes/text.html'], self.tool)
@@ -168,7 +165,6 @@ class PrintBaselinesTest(unittest.TestCase):
def test_csv(self):
command = PrintBaselines()
- command.bind_to_tool(self.tool)
self.capture_output()
options = optparse.Values({'all': False, 'platform': '*win7', 'csv': True, 'include_virtual_tests': False})
command.execute(options, ['passes/text.html'], self.tool)

Powered by Google App Engine
This is Rietveld 408576698