diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-06-30 22:36:47 -0400 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-06-30 22:36:47 -0400 |
commit | 090f9f33e7f626df0c9ea41251ea04a56883efd9 (patch) | |
tree | 76d3b757f48aba1872c61f88ef968c3726d3076f /tests/test_cmd2.py | |
parent | b6576718ff74035f00e2c89d50ba993ae3659a94 (diff) | |
download | cmd2-git-090f9f33e7f626df0c9ea41251ea04a56883efd9.tar.gz |
Attempt at fixing new unit test on Linux and Windows
Diffstat (limited to 'tests/test_cmd2.py')
-rw-r--r-- | 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 22ac84d9..9c270a34 100644 --- a/tests/test_cmd2.py +++ b/tests/test_cmd2.py @@ -728,7 +728,7 @@ def shell_app(): return app def test_default_to_shell_found(shell_app): - out = run_cmd(shell_app, 'ls -hal') + out = run_cmd(shell_app, 'echo Hello') assert out == [] def test_default_to_shell_unknown(shell_app): |