diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-06-09 15:56:56 -0400 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-06-09 15:56:56 -0400 |
commit | 231a8e97641ab4576403fc3ba3432814f28a37ae (patch) | |
tree | c3cc0a5f0da8081a1c288388096fa7d8de1144f7 /tests/test_bashcompletion.py | |
parent | 6642e42c56bf936408a9c889bb1483516ef02e23 (diff) | |
download | cmd2-git-231a8e97641ab4576403fc3ba3432814f28a37ae.tar.gz |
Fixed logic of test
Diffstat (limited to 'tests/test_bashcompletion.py')
-rw-r--r-- | tests/test_bashcompletion.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_bashcompletion.py b/tests/test_bashcompletion.py index a29d39df..04a564f4 100644 --- a/tests/test_bashcompletion.py +++ b/tests/test_bashcompletion.py @@ -103,7 +103,7 @@ def parser1(): # noinspection PyShadowingNames -@pytest.mark.skipif(skip, reason=(skip_reason1 or skip_reason3)) +@pytest.mark.skipif(skip_reason1 or skip_reason3, reason=skip_reason) def test_bash_nocomplete(parser1): completer = CompletionFinder() result = completer(parser1, AutoCompleter(parser1)) |