summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTodd Leonhardt <tleonhardt@gmail.com>2017-06-28 15:43:15 -0400
committerTodd Leonhardt <tleonhardt@gmail.com>2017-06-28 15:43:15 -0400
commit6ea7fc0587ba1645ee4bdd4c610480e55c4a7d96 (patch)
tree4bfd81f0a45a2e8b33469a3bb6eca20984c768cf /tests
parent28b5a6b8667f2e105c6c38ef9cf341a0087006fb (diff)
downloadcmd2-git-6ea7fc0587ba1645ee4bdd4c610480e55c4a7d96.tar.gz
Removed the ability for load command to load a script from a URL
From what I can tell, this hasn't worked in years and there aren't any unit tests which display how it is supposed to work.
Diffstat (limited to 'tests')
-rw-r--r--tests/test_cmd2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_cmd2.py b/tests/test_cmd2.py
index 4fd9ca1c..ba83e426 100644
--- a/tests/test_cmd2.py
+++ b/tests/test_cmd2.py
@@ -292,7 +292,7 @@ def test_base_load_default_file(base_app, capsys):
# The default file 'command.txt' doesn't exist, so we should get an error message
expected = normalize("""ERROR: Problem accessing script from command.txt:
-[Errno 2] No such file or directory: 'command.txt.txt'
+[Errno 2] No such file or directory: 'command.txt'
To enable full traceback, run the following command: 'set debug true'
""")
assert normalize(str(err)) == expected