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

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

Issue 2633223003: Convert CSSProperties.in to JSON5 format (Closed)
Patch Set: Remove CSSProperties input from webkitpy/w3c/ script 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/test_importer_unittest.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer_unittest.py
index 1ff68fe111388b38c0b9723923e9b1a969df8daf..84ba6ca0d71c038e5bb7c144435173d5133f162f 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer_unittest.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer_unittest.py
@@ -134,7 +134,7 @@ class TestImporterTest(unittest.TestCase):
'/blink/w3c/dir1/my-ref-test.html': '<html><head><link rel="match" href="ref-file.html" />test</head></html>',
'/blink/w3c/dir1/ref-file.html': '<html><head>test</head></html>',
'/mock-checkout/third_party/WebKit/LayoutTests/W3CImportExpectations': '',
- '/mock-checkout/third_party/WebKit/Source/core/css/CSSProperties.in': '',
+ '/mock-checkout/third_party/WebKit/Source/core/css/CSSProperties.json5': '',
tkent 2017/01/17 03:14:53 I think we don't need this line because test_conve
ktyliu 2017/01/17 03:50:25 Good catch. Done.
})
importer = TestImporter(host, FAKE_SOURCE_REPO_DIR, self.options())
importer.find_importable_tests()
@@ -159,7 +159,6 @@ class TestImporterTest(unittest.TestCase):
host.filesystem = MockFileSystem(files={
'/blink/w3c/dir1/my-ref-test.html': '<html><head><link rel="match" href="not-here.html" /></head></html>',
'/mock-checkout/third_party/WebKit/LayoutTests/W3CImportExpectations': '',
- '/mock-checkout/third_party/WebKit/Source/core/css/CSSProperties.in': '',
})
importer = TestImporter(host, FAKE_SOURCE_REPO_DIR, self.options())
importer.find_importable_tests()

Powered by Google App Engine
This is Rietveld 408576698