diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-04-11 13:09:18 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-04-11 13:09:18 -0400 |
commit | 526ab5325536f91c48867f4497f4b3dd4150f482 (patch) | |
tree | 6bbe109ac6bc4dc5082fc8cd8e6cecd6a94ac677 | |
parent | 2bac6bcda3b7c5b2ba7093955acf232dd89f9f0f (diff) | |
download | cmd2-git-526ab5325536f91c48867f4497f4b3dd4150f482.tar.gz |
Fixed unit test name
-rw-r--r-- | tests/test_run_pyscript.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_run_pyscript.py b/tests/test_run_pyscript.py index f050f508..12257fc5 100644 --- a/tests/test_run_pyscript.py +++ b/tests/test_run_pyscript.py @@ -123,7 +123,7 @@ def test_run_pyscript_environment(base_app, request): assert out[0] == "PASSED" -def test_run_pyscript_echp(base_app, request): +def test_run_pyscript_app_echo(base_app, request): test_dir = os.path.dirname(request.module.__file__) python_script = os.path.join(test_dir, 'pyscript', 'echo.py') out, err = run_cmd(base_app, 'run_pyscript {}'.format(python_script)) |