Skip to content

Commit

Permalink
Fix test_cmd_line again.
Browse files Browse the repository at this point in the history
  • Loading branch information
serhiy-storchaka committed Jan 20, 2025
1 parent b341ef3 commit ac23640
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/test/test_cmd_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -1015,7 +1015,7 @@ def test_parsing_error(self):
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
text=True)
err_msg = "Unknown option --unknown-option\nusage: "
err_msg = "Unknown option: --unknown-option\nusage: "
self.assertStartsWith(proc.stderr, err_msg)
self.assertNotEqual(proc.returncode, 0)

Expand Down

0 comments on commit ac23640

Please sign in to comment.