Index: media/tools/layout_tests/test_expectations_unittest.py |
diff --git a/media/tools/layout_tests/test_expectations_unittest.py b/media/tools/layout_tests/test_expectations_unittest.py |
old mode 100755 |
new mode 100644 |
index dc60b7d814550bd9b8565bb24c99b35aa9deee36..9c6b8eaee785bdecc038eaa38219c1ce358a45c8 |
--- a/media/tools/layout_tests/test_expectations_unittest.py |
+++ b/media/tools/layout_tests/test_expectations_unittest.py |
@@ -11,7 +11,7 @@ from test_expectations import TestExpectations |
class TestTestExpectations(unittest.TestCase): |
def testParseLine(self): |
- line = "BUGCR86714 MAC GPU : media/video-zoom.html = CRASH IMAGE" |
+ line = 'BUGCR86714 MAC GPU : media/video-zoom.html = CRASH IMAGE' |
comments = 'Comments' |
expected_map = {'CRASH': True, 'IMAGE': True, 'Bugs': ['BUGCR86714'], |
'Comments': 'Comments', 'MAC': True, 'GPU': True} |
@@ -19,7 +19,7 @@ class TestTestExpectations(unittest.TestCase): |
expected_map) |
def testParseLineWithLineComments(self): |
- line = "BUGCR86714 MAC GPU : media/video-zoom.html = CRASH IMAGE // foo" |
+ line = 'BUGCR86714 MAC GPU : media/video-zoom.html = CRASH IMAGE // foo' |
comments = 'Comments' |
expected_map = {'CRASH': True, 'IMAGE': True, 'Bugs': ['BUGCR86714'], |
'Comments': 'Comments foo', 'MAC': True, 'GPU': True} |
@@ -27,7 +27,7 @@ class TestTestExpectations(unittest.TestCase): |
expected_map) |
def testParseLineWithLineGPUComments(self): |
- line = "BUGCR86714 MAC : media/video-zoom.html = CRASH IMAGE // GPU" |
+ line = 'BUGCR86714 MAC : media/video-zoom.html = CRASH IMAGE // GPU' |
comments = 'Comments' |
expected_map = {'CRASH': True, 'IMAGE': True, 'Bugs': ['BUGCR86714'], |
'Comments': 'Comments GPU', 'MAC': True} |