Skip to content

Commit 231a8e9

Browse files
committed
Fixed logic of test
1 parent 6642e42 commit 231a8e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_bashcompletion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def _do_media_shows(self, args) -> None:
103103

104104

105105
# noinspection PyShadowingNames
106-
@pytest.mark.skipif(skip, reason=(skip_reason1 or skip_reason3))
106+
@pytest.mark.skipif(skip_reason1 or skip_reason3, reason=skip_reason)
107107
def test_bash_nocomplete(parser1):
108108
completer = CompletionFinder()
109109
result = completer(parser1, AutoCompleter(parser1))

0 commit comments

Comments
 (0)