diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-05-18 11:07:13 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-18 11:07:13 -0400 |
commit | 8297145a74ee4d239cfb7d68a47f59342fd831fe (patch) | |
tree | 4f2cab708b1ade9db3dfb8cd606d2b384e67f629 /tests/test_cmd2.py | |
parent | 398cec2fd27c7e09d1b01dc383c5aefeb28511c3 (diff) | |
parent | ec91ec1340c9759add11e7bf2b9b5cd913dc1ee3 (diff) | |
download | cmd2-git-8297145a74ee4d239cfb7d68a47f59342fd831fe.tar.gz |
Merge pull request #101 from python-cmd2/windows_path
Fixed a hard-coded path separator
Diffstat (limited to 'tests/test_cmd2.py')
-rw-r--r-- | tests/test_cmd2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_cmd2.py b/tests/test_cmd2.py index 10ae4329..3b0f752e 100644 --- a/tests/test_cmd2.py +++ b/tests/test_cmd2.py @@ -22,7 +22,7 @@ from conftest import run_cmd, normalize, BASE_HELP, HELP_HISTORY, SHORTCUTS_TXT, def test_ver(): - assert cmd2.__version__ == '0.7.1a' + assert cmd2.__version__ == '0.7.1' def test_base_help(base_app): |