Index: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/layout_tests_mover_unittest.py |
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/layout_tests_mover_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/layout_tests_mover_unittest.py |
index 7be0bbaa1e3577763b6528af720d6da7fabb02a4..e888a70641e611392daee858dbc1c71b0346d86c 100644 |
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/layout_tests_mover_unittest.py |
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/layout_tests_mover_unittest.py |
@@ -49,7 +49,7 @@ class MockPort(base.Port): |
host.filesystem.write_text_file(self._absolute_path('VirtualTestSuites'), '[]') |
host.filesystem.write_text_file(self._absolute_path('TestExpectations'), """ |
crbug.com/42 [ Debug ] origin/path/test.html [ Pass Timeout Failure ] |
-crbug.com/42 [ Win ] origin/path [ Slow ] |
+crbug.com/42 [ Win ] origin/path [ Crash ] |
crbug.com/42 [ Release ] origin [ Crash ] |
""") |
host.filesystem.write_text_file(self._absolute_path('existing_directory_with_contents', 'test.html'), '') |
@@ -170,7 +170,7 @@ class LayoutTestsMoverTest(unittest.TestCase): |
def test_directory_expectation_is_updated(self): |
self._mover.move('origin/path', 'destination') |
self.assertFalse('origin/path' in self._filesystem.read_text_file(self._port._absolute_path('TestExpectations'))) |
- self.assertTrue('crbug.com/42 [ Win ] destination [ Slow ]' in self._filesystem.read_text_file(self._port._absolute_path('TestExpectations'))) |
+ self.assertTrue('crbug.com/42 [ Win ] destination [ Crash ]' in self._filesystem.read_text_file(self._port._absolute_path('TestExpectations'))) |
def test_expectation_is_added_when_subdirectory_moved(self): |
self._mover.move('origin/path', 'destination') |