diff options
author | Todd Leonhardt <tleonhardt@gmail.com> | 2017-06-28 18:10:16 -0400 |
---|---|---|
committer | Todd Leonhardt <tleonhardt@gmail.com> | 2017-06-28 18:10:16 -0400 |
commit | d80d47b9a78624b515b732ee3c3f848150cfaa86 (patch) | |
tree | b9f18e59b182f09b9a1dca397d97b72c11b12258 /tests/test_cmd2.py | |
parent | 9efa8ee8d0e14d494eb954cd356d17832573deee (diff) | |
download | cmd2-git-d80d47b9a78624b515b732ee3c3f848150cfaa86.tar.gz |
Multiple changes
- Disabled TravisCI macOS builds because they are heavily backlogged
- Removed a file which should never have been committed
- Updated Sphinx docs to relect that the default_file_name settable parameter no longer exists
- Fixed comment in a unit test
- Fixed a unit test to use os.path.sep for cross-platform compatibility
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 707699f3..5ca95275 100644 --- a/tests/test_cmd2.py +++ b/tests/test_cmd2.py @@ -288,7 +288,7 @@ def test_base_load_with_empty_args(base_app, capsys): run_cmd(base_app, 'load') out, err = capsys.readouterr() - # The default file 'command.txt' doesn't exist, so we should get an error message + # The load command requires a file path argument, so we should get an error message expected = normalize("""ERROR: load command requires a file path:\n""") assert normalize(str(err)) == expected |