Index: media/tools/layout_tests/trend_graph_unittest.py |
diff --git a/media/tools/layout_tests/trend_graph_unittest.py b/media/tools/layout_tests/trend_graph_unittest.py |
old mode 100755 |
new mode 100644 |
index bc9d09524ff48968237a04756695ebb76a11a190..57c1efd2ce600e5ba37604718cad6cda85e9ceb3 |
--- a/media/tools/layout_tests/trend_graph_unittest.py |
+++ b/media/tools/layout_tests/trend_graph_unittest.py |
@@ -29,11 +29,11 @@ class TestTrendGraph(unittest.TestCase): |
f = open(test_graph_file_path) |
lines2 = f.readlines() |
f.close() |
- lineCount = 0 |
+ line_count = 0 |
for line in lines2: |
if '2008,0,1,13,45,00' in line: |
- lineCount += 1 |
- self.assertEqual(lineCount, 2) |
+ line_count += 1 |
+ self.assertEqual(line_count, 2) |
if __name__ == '__main__': |