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): |