Skip to content

Commit 10e7036

Browse files
committed
2nd try at selectively enabling parameterized
1 parent 0e0e22d commit 10e7036

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_bashcompletion.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def test_invalid_ifs(parser1, mock):
138138
# noinspection PyShadowingNames
139139
@pytest.mark.skipif(skip_no_argcomplete or skip_windows or skip_mac, reason=skip_reason)
140140
@pytest.mark.parametrize('comp_line, exp_out, exp_err', [
141-
('media ', 'movies\013shows', ''),
141+
('media mo', 'movies', ''),
142142
])
143143
def test_commands_travis(parser1, capfd, mock, comp_line, exp_out, exp_err):
144144
mock.patch.dict(os.environ, {'_ARGCOMPLETE': '1',
@@ -164,7 +164,7 @@ def test_commands_travis(parser1, capfd, mock, comp_line, exp_out, exp_err):
164164
# noinspection PyShadowingNames
165165
@pytest.mark.skipif(skip or skip_mac, reason=skip_reason)
166166
@pytest.mark.parametrize('comp_line, exp_out, exp_err', [
167-
('media mo', 'movies', ''),
167+
('media ', 'movies\013shows', ''),
168168
('media movies list -a "J', '"John Boyega"\013"Jake Lloyd"', ''),
169169
('media movies list ', '', ''),
170170
('media movies add ', '\013\013 ', '''

0 commit comments

Comments
 (0)