Skip to content

Commit

Permalink
fix multi install test
Browse files Browse the repository at this point in the history
  • Loading branch information
bckohan committed Jan 8, 2025
1 parent ca2d25d commit 42272f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/shellcompletion/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ def remove_script(cls, script=None):

def test_multi_install(self):
parts = self.manage_script.split(".")
manage2 = ".".join(parts[0] + "2", *parts[1:])
manage2 = ".".join([parts[0] + "2", *parts[1:]])
try:
self.install_script(script=manage2)
self.install()
Expand Down

0 comments on commit 42272f3

Please sign in to comment.