Skip to content

Commit 4ec2a94

Browse files
committed
Fix tests.
1 parent a9d02a4 commit 4ec2a94

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_terminal.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def test_interrupt_windows(capsys):
5151

5252
captured = capsys.readouterr()
5353
stdout = captured.out.split("\n")
54-
assert stdout == ["(Press Ctrl-C to quit at any time.)", '']
54+
assert stdout == ["(Press Ctrl-C to quit at any time)", '']
5555

5656

5757
@not_windows(reason="Different test used for Windows")
@@ -60,7 +60,7 @@ def test_interrupt_posix(capsys):
6060

6161
captured = capsys.readouterr()
6262
stdout = captured.out.split("\n")
63-
assert stdout == ["(Press Ctrl-D to quit at any time.)", '']
63+
assert stdout == ["(Press Ctrl-D to quit at any time)", '']
6464

6565

6666
# @only_windows(reason="Different test used for POSIX")

0 commit comments

Comments
 (0)