We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9d02a4 commit 4ec2a94Copy full SHA for 4ec2a94
tests/test_terminal.py
@@ -51,7 +51,7 @@ def test_interrupt_windows(capsys):
51
52
captured = capsys.readouterr()
53
stdout = captured.out.split("\n")
54
- assert stdout == ["(Press Ctrl-C to quit at any time.)", '']
+ assert stdout == ["(Press Ctrl-C to quit at any time)", '']
55
56
57
@not_windows(reason="Different test used for Windows")
@@ -60,7 +60,7 @@ def test_interrupt_posix(capsys):
60
61
62
63
- assert stdout == ["(Press Ctrl-D to quit at any time.)", '']
+ assert stdout == ["(Press Ctrl-D to quit at any time)", '']
64
65
66
# @only_windows(reason="Different test used for POSIX")
0 commit comments