| 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 221c58fc89a54998d51182f8efad791fe5a776f9..632be4336246e7ee46aa28823c1d8825acee7320 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
|
| @@ -97,7 +97,7 @@ class DepsUpdaterTest(unittest.TestCase):
|
| updater = DepsUpdater(host)
|
| updater._generate_manifest(
|
| '/mock-checkout/third_party/WebKit/css',
|
| - '/mock-checkout/third_party/WebKit/LayoutTests/imported/csswg-test')
|
| + '/mock-checkout/third_party/WebKit/LayoutTests/external/csswg-test')
|
| self.assertEqual(host.executive.calls, [])
|
|
|
| def test_generate_manifest_successful_run(self):
|
| @@ -107,7 +107,7 @@ class DepsUpdaterTest(unittest.TestCase):
|
| updater = DepsUpdater(host)
|
| updater._generate_manifest(
|
| '/mock-checkout/third_party/WebKit/wpt',
|
| - '/mock-checkout/third_party/WebKit/LayoutTests/imported/wpt')
|
| + '/mock-checkout/third_party/WebKit/LayoutTests/external/wpt')
|
| self.assertEqual(
|
| host.executive.calls,
|
| [
|
| @@ -115,11 +115,11 @@ class DepsUpdaterTest(unittest.TestCase):
|
| '/mock-checkout/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/wpt/manifest',
|
| '--work',
|
| '--tests-root',
|
| - '/mock-checkout/third_party/WebKit/LayoutTests/imported/wpt'
|
| + '/mock-checkout/third_party/WebKit/LayoutTests/external/wpt'
|
| ],
|
| [
|
| 'git',
|
| 'add',
|
| - '/mock-checkout/third_party/WebKit/LayoutTests/imported/wpt/MANIFEST.json'
|
| + '/mock-checkout/third_party/WebKit/LayoutTests/external/wpt/MANIFEST.json'
|
| ]
|
| ])
|
|
|