diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2021-04-30 13:20:44 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2021-04-30 13:28:50 -0400 |
commit | 3e9377adf9ff4b3dc7839d42ff74477627cf5380 (patch) | |
tree | 43f9554a1b0fb326d24a5bba45803b59ef8501e0 /tests/test_cmd2.py | |
parent | 79bf87d1e333ea5fe0dfeb61c707eb9bddfd0255 (diff) | |
download | cmd2-git-ctrl-d.tar.gz |
do_eof() now just calls the quit functionctrl-d
Diffstat (limited to 'tests/test_cmd2.py')
-rwxr-xr-x | tests/test_cmd2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_cmd2.py b/tests/test_cmd2.py index cfa30830..49d90dac 100755 --- a/tests/test_cmd2.py +++ b/tests/test_cmd2.py @@ -972,7 +972,7 @@ def test_ctrl_c_at_prompt(say_app): # And verify the expected output to stdout out = say_app.stdout.getvalue() - assert out == 'hello\n^C\ngoodbye\n' + assert out == 'hello\n^C\ngoodbye\n\n' class ShellApp(cmd2.Cmd): |