Index: chrome/tools/automated_ui_test_tools/auto_ui_test_input_generator.py |
diff --git a/chrome/tools/automated_ui_test_tools/auto_ui_test_input_generator.py b/chrome/tools/automated_ui_test_tools/auto_ui_test_input_generator.py |
index 4c335e6d3735eac73805ee874c95f44d318aa9dd..df9bc2275f22012a822626e06a31f6851ca27ed9 100755 |
--- a/chrome/tools/automated_ui_test_tools/auto_ui_test_input_generator.py |
+++ b/chrome/tools/automated_ui_test_tools/auto_ui_test_input_generator.py |
@@ -245,10 +245,7 @@ class AutomatedTestInputGenerator: |
def __init__(self): |
(options,args) = ParseCommandLine() |
input_file = open(options.input_file_name) |
- actions_list = [] |
- for line in input_file.readlines(): |
- if not line.startswith('#'): |
- actions_list.append(line) |
+ actions_list = input_file.readlines() |
input_file.close() |
self.__commands_per_file = options.commands_per_file |