summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2020-04-22 01:33:00 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2020-04-22 01:33:00 -0400
commitba5d7befdc7fe5ec95437a840ca83a612f041a93 (patch)
treeb59ca1e773ed661efa991c1d7962e1cdef5bcedf /tests
parent92c010d583b52be9728efca25c5f074a594e5392 (diff)
parente7a0be4df68346ac15626c20c4a19c8fabb1bf49 (diff)
downloadcmd2-git-ba5d7befdc7fe5ec95437a840ca83a612f041a93.tar.gz
Merge branch 'master' into table_creator
Diffstat (limited to 'tests')
-rw-r--r--tests/test_run_pyscript.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_run_pyscript.py b/tests/test_run_pyscript.py
index 12257fc5..6110e3ac 100644
--- a/tests/test_run_pyscript.py
+++ b/tests/test_run_pyscript.py
@@ -35,7 +35,7 @@ def test_run_pyscript(base_app, request):
def test_run_pyscript_recursive_not_allowed(base_app, request):
test_dir = os.path.dirname(request.module.__file__)
python_script = os.path.join(test_dir, 'pyscript', 'recursive.py')
- expected = 'Recursively entering interactive Python consoles is not allowed.'
+ expected = 'Recursively entering interactive Python shells is not allowed'
out, err = run_cmd(base_app, "run_pyscript {}".format(python_script))
assert err[0] == expected