Skip to content

Commit ac23640

Browse files
Fix test_cmd_line again.
1 parent b341ef3 commit ac23640

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_cmd_line.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1015,7 +1015,7 @@ def test_parsing_error(self):
10151015
stdout=subprocess.PIPE,
10161016
stderr=subprocess.PIPE,
10171017
text=True)
1018-
err_msg = "Unknown option --unknown-option\nusage: "
1018+
err_msg = "Unknown option: --unknown-option\nusage: "
10191019
self.assertStartsWith(proc.stderr, err_msg)
10201020
self.assertNotEqual(proc.returncode, 0)
10211021

0 commit comments

Comments
 (0)