diff options
author | bors-servo <metajack+bors@gmail.com> | 2014-12-05 03:13:09 -0700 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2014-12-05 03:13:09 -0700 |
commit | 1046839e8cbf049f13d465cf7137e501a83119b9 (patch) | |
tree | 09694bfac1dd8b74b6db84bbedb45c7cc9592e15 /python | |
parent | 0065c230dad0e591d9a448ff00ef977074485dd5 (diff) | |
parent | fd5d4fffd739e70232b0b2586c265adb948efa30 (diff) | |
download | servo-1046839e8cbf049f13d465cf7137e501a83119b9.tar.gz servo-1046839e8cbf049f13d465cf7137e501a83119b9.zip |
auto merge of #4231 : mttr/servo/mach_test_fix, r=jdm
Somehow didn't catch this when renaming a variable.
Diffstat (limited to 'python')
-rw-r--r-- | python/servo/testing_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py index ff4844731d8..9581142e941 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -63,7 +63,7 @@ class MachCommands(CommandBase): for test_dir, test_name, path_flag in test_dirs: if not path_flag: - path_arg = [] + path_flag = [] if test_dir in maybe_path: args = ([mach_command, test_name] + path_flag + [maybe_path] + params[1:]) |