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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater_unittest.py

Issue 2633933002: Directly use TestImporter in DepsUpdater instead of invoking script. (Closed)
Patch Set: Rebased 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/w3c/deps_updater_unittest.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater_unittest.py
index d2d98bce0640e794cef77fe3d1ef1a0e05c2855c..8b0c9ea7eab98e6648465ba9a6572b0dde055b26 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater_unittest.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater_unittest.py
@@ -96,7 +96,6 @@ class DepsUpdaterTest(unittest.TestCase):
host.filesystem.files = {}
updater = DepsUpdater(host)
updater._generate_manifest(
- '/mock-checkout/third_party/WebKit/css',
'/mock-checkout/third_party/WebKit/LayoutTests/external/csswg-test')
self.assertEqual(host.executive.calls, [])
@@ -106,7 +105,6 @@ class DepsUpdaterTest(unittest.TestCase):
host = MockHost()
updater = DepsUpdater(host)
updater._generate_manifest(
- '/mock-checkout/third_party/WebKit/wpt',
'/mock-checkout/third_party/WebKit/LayoutTests/external/wpt')
self.assertEqual(
host.executive.calls,

Powered by Google App Engine
This is Rietveld 408576698