From 4a3c5a02e144a72e26103d02ce38163ba765e796 Mon Sep 17 00:00:00 2001 From: Kevin Van Brunt Date: Thu, 28 Feb 2019 00:27:12 -0500 Subject: Removed ability to call commands as if they were functions in pyscript (e.g. app.help()) --- tests/pyscript/help.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/pyscript/help.py') diff --git a/tests/pyscript/help.py b/tests/pyscript/help.py index 3f24246d..933f42bc 100644 --- a/tests/pyscript/help.py +++ b/tests/pyscript/help.py @@ -1,3 +1,3 @@ # flake8: noqa F821 app.cmd_echo = True -app.help() +app('help') -- cgit v1.2.1 From accd9c71aef22d98707122369fb1ca66c279ecd8 Mon Sep 17 00:00:00 2001 From: Kevin Van Brunt Date: Fri, 1 Mar 2019 16:07:11 -0500 Subject: Fixed a lot of warnings --- tests/pyscript/help.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tests/pyscript/help.py') diff --git a/tests/pyscript/help.py b/tests/pyscript/help.py index 933f42bc..2e69d79f 100644 --- a/tests/pyscript/help.py +++ b/tests/pyscript/help.py @@ -1,3 +1,6 @@ # flake8: noqa F821 app.cmd_echo = True app('help') + +# Exercise py_quit() in unit test +quit() -- cgit v1.2.1