Skip to content

Commit

Permalink
Fixed linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sananguliyev committed Jun 29, 2020
1 parent 8fa9c24 commit bfed579
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions test/test_ansible_galaxy_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@ def test_init(self, mock_os_getcwd, mock_subprocess_call):
[
"ansible-galaxy",
"install",
"%s,%s,%s" % (expected_package, expected_version, expected_package)
"%s,%s,%s" % (
expected_package,
expected_version,
expected_package
)
],
command
)
Expand Down Expand Up @@ -69,7 +73,11 @@ def test_init_with_alias(self, mock_os_getcwd, mock_subprocess_call):
[
"ansible-galaxy",
"install",
"%s,%s,%s" % (expected_package, expected_version, expected_alias)
"%s,%s,%s" % (
expected_package,
expected_version,
expected_alias
)
],
command
)
Expand Down Expand Up @@ -110,7 +118,11 @@ def test_init_with_different_installed_version(
[
"ansible-galaxy",
"install",
"%s,%s,%s" % (expected_package, expected_version, expected_package),
"%s,%s,%s" % (
expected_package,
expected_version,
expected_package
),
"--force"
],
command
Expand Down Expand Up @@ -216,7 +228,11 @@ def test_init_with_invalid_install_info_yaml(
[
"ansible-galaxy",
"install",
"%s,%s,%s" % (expected_package, expected_version, expected_package)
"%s,%s,%s" % (
expected_package,
expected_version,
expected_package
)
],
command
)
Expand Down

0 comments on commit bfed579

Please sign in to comment.