Skip to content

Commit 4536f93

Browse files
test(argcomplete): fix command
`py -m` was added to command in `test_argcomplete_activation` during experimentation and was forgotten to be removed.
1 parent 53ac7c9 commit 4536f93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def test_argcomplete_activation():
9797
Equivalent to run:
9898
$ eval "$(register-python-argcomplete pytest)"
9999
"""
100-
output = subprocess.run(["py", "-m", "register-python-argcomplete", "cz"])
100+
output = subprocess.run(["register-python-argcomplete", "cz"])
101101

102102
assert output.returncode == 0
103103

0 commit comments

Comments
 (0)