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

Unified Diff: media/tools/layout_tests/trend_graph_unittest.py

Issue 9476021: Updating Layout test analyzer to add control to show issue detail or not. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 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
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__':
« media/tools/layout_tests/trend_graph.py ('K') | « media/tools/layout_tests/trend_graph.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698