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

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

Issue 2708883004: Increase max WPT import path length to 160. (Closed)
Patch Set: Created 3 years, 10 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/w3c/test_copier.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/w3c/test_copier_unittest.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_copier_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_copier_unittest.py
index 6631bb337e44595f33888a0190a258bcbfbd7e0a..7b18031c873edfeff62bf0eb06ac675e18d9cfac 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_copier_unittest.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_copier_unittest.py
@@ -145,7 +145,7 @@ class TestCopierTest(LoggingTestCase):
def test_files_with_long_path_are_skipped(self):
host = MockHost()
host.filesystem = MockFileSystem(files=FAKE_FILES)
- long_file_path = '%s/%s.html' % (FAKE_SOURCE_REPO_DIR, 'x' * 150)
+ long_file_path = '%s/%s.html' % (FAKE_SOURCE_REPO_DIR, 'x' * 180)
short_file_path = '%s/x.html' % FAKE_SOURCE_REPO_DIR
host.filesystem.write_text_file(long_file_path, '<html></html>')
host.filesystem.write_text_file(short_file_path, '<html></html>')
@@ -153,7 +153,7 @@ class TestCopierTest(LoggingTestCase):
copier.find_importable_tests()
self.assertLog([
'WARNING: Skipping: %s\n' % long_file_path,
- 'WARNING: Reason: Long path. Max length 140; see http://crbug.com/609871.\n',
+ 'WARNING: Reason: Long path. Max length 160; see http://crbug.com/609871.\n',
])
def test_should_try_to_convert_positive_cases(self):
« no previous file with comments | « third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_copier.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698