diff options
Diffstat (limited to 'tests/test_cmd2.py')
-rw-r--r-- | tests/test_cmd2.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/test_cmd2.py b/tests/test_cmd2.py index 999aee8c..3324a105 100644 --- a/tests/test_cmd2.py +++ b/tests/test_cmd2.py @@ -28,9 +28,8 @@ from .conftest import run_cmd, normalize, BASE_HELP, BASE_HELP_VERBOSE, \ HELP_HISTORY, SHORTCUTS_TXT, SHOW_TXT, SHOW_LONG, StdOut -def test_ver(): - assert cmd2.__version__ == '0.9.4' - +def test_version(base_app): + assert cmd2.__version__ def test_empty_statement(base_app): out = run_cmd(base_app, '') |