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

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

Issue 2610243002: Import wpt@5e1a3b80cea8d36774d2afd78b29a74792e9f15a (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
« no previous file with comments | « third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base_unittest.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base_unittest.py
index 0ca0e364d20b9375326959ec358f617d561bfcf0..76006bba63057271af0027e991d1eab2d3999df7 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base_unittest.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base_unittest.py
@@ -305,26 +305,19 @@ class PortTest(unittest.TestCase):
@staticmethod
def _add_manifest_to_mock_file_system(filesystem):
filesystem.write_text_file(LAYOUT_TEST_DIR + '/imported/wpt/MANIFEST.json', json.dumps({
- "local_changes": {
- "items": {
- 'testharness': {
- 'dom/ranges/Range-attributes.html': [{
- 'path': 'dom/ranges/Range-attributes.html',
- 'url': '/dom/ranges/Range-attributes.html'
- }],
- 'console/console-is-a-namespace.any.js': [
- {
- 'path': 'console/console-is-a-namespace.any.js',
- 'url': '/console/console-is-a-namespace.any.html'
- },
- {
- 'path': 'console/console-is-a-namespace.any.js',
- 'url': '/console/console-is-a-namespace.any.worker'
- }
- ]},
- 'manual': {},
- 'reftest': {}
- }}}))
+ 'items': {
+ 'testharness': {
+ 'dom/ranges/Range-attributes.html': [
+ ['/dom/ranges/Range-attributes.html', {}]
+ ],
+ 'console/console-is-a-namespace.any.js': [
+ ['/console/console-is-a-namespace.any.html', {}],
+ ['/console/console-is-a-namespace.any.worker.html', {}],
+ ],
+ },
+ 'manual': {},
+ 'reftest': {},
+ }}))
filesystem.write_text_file(LAYOUT_TEST_DIR + '/imported/wpt/dom/ranges/Range-attributes.html', '')
filesystem.write_text_file(LAYOUT_TEST_DIR + '/imported/wpt/console/console-is-a-namespace.any.js', '')
filesystem.write_text_file(LAYOUT_TEST_DIR + '/imported/wpt/common/blank.html', 'foo')
« no previous file with comments | « third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698