diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-03-26 00:14:08 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-03-26 00:14:08 (GMT) |
commit | 3fa1aaebde6408dcfe169932d35bf922a77e64c9 (patch) | |
tree | c8c87ce19082e006e2cd9139031324d94dba71ed /Lib/test/test_cmd_line.py | |
parent | 765531d2d083c7a4e9478fcd960eebe04ac6b192 (diff) | |
download | cpython-3fa1aaebde6408dcfe169932d35bf922a77e64c9.zip cpython-3fa1aaebde6408dcfe169932d35bf922a77e64c9.tar.gz cpython-3fa1aaebde6408dcfe169932d35bf922a77e64c9.tar.bz2 |
Issue #17516: do not create useless tuple: remove dummy commas in tests
Diffstat (limited to 'Lib/test/test_cmd_line.py')
-rw-r--r-- | Lib/test/test_cmd_line.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_cmd_line.py b/Lib/test/test_cmd_line.py index 2551ab5..9ae882f 100644 --- a/Lib/test/test_cmd_line.py +++ b/Lib/test/test_cmd_line.py @@ -98,9 +98,9 @@ class CmdLineTest(unittest.TestCase): assert_python_failure('-m', 'fnord43520xyz') # Check the runpy module also gives an error for # a nonexistent module - assert_python_failure('-m', 'runpy', 'fnord43520xyz'), + assert_python_failure('-m', 'runpy', 'fnord43520xyz') # All good if module is located and run successfully - assert_python_ok('-m', 'timeit', '-n', '1'), + assert_python_ok('-m', 'timeit', '-n', '1') def test_run_module_bug1764407(self): # -m and -i need to play well together |