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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/port_testcase.py

Issue 2511333002: Cleanup after enabling WPTServe. (Closed)
Patch Set: Update a comment, remove the right testharnessreport.js Created 3 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
Index: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/port_testcase.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/port_testcase.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/port_testcase.py
index 48061c897a4d27bf02fb9e966bf1fbaa89619a2f..d51c1205d8de3714c0abb51d30c1f45c51519adf 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/port_testcase.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/port_testcase.py
@@ -262,16 +262,6 @@ class PortTestCase(LoggingTestCase):
port.host.filesystem.join(port.layout_tests_dir(), 'SlowTests'),
])
- def test_expectations_files_wptserve_enabled(self):
- port = self.make_port(options=optparse.Values(dict(enable_wptserve=True)))
- self.assertEqual(port.expectations_files(), [
- port.path_to_generic_test_expectations_file(),
- port.host.filesystem.join(port.layout_tests_dir(), 'NeverFixTests'),
- port.host.filesystem.join(port.layout_tests_dir(), 'StaleTestExpectations'),
- port.host.filesystem.join(port.layout_tests_dir(), 'SlowTests'),
- port.host.filesystem.join(port.layout_tests_dir(), 'WPTServeExpectations'),
- ])
-
def test_check_sys_deps(self):
port = self.make_port()
port._executive = MockExecutive(exit_code=0) # pylint: disable=protected-access

Powered by Google App Engine
This is Rietveld 408576698