Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Dec 30, 2024
1 parent 59f2bd6 commit 64eefcf
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions tests/unit/modules/network/eos/test_eos_acls.py
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,9 @@ def test_eos_two_acls_idempotent(self):
sequence="20",
grant="permit",
source=dict(subnet_address="192.0.2.0/24"),
destination=dict(any="true", port_protocol=dict(eq="https")),
destination=dict(
any="true", port_protocol=dict(eq="https")
),
protocol="tcp",
log="true",
),
Expand All @@ -432,7 +434,9 @@ def test_eos_two_acls_idempotent(self):
sequence="20",
grant="permit",
log="true",
destination=dict(any="true", port_protocol=dict(eq="https")),
destination=dict(
any="true", port_protocol=dict(eq="https")
),
protocol="tcp",
source=dict(subnet_address="192.0.2.0/24"),
),
Expand All @@ -446,7 +450,6 @@ def test_eos_two_acls_idempotent(self):
)
self.execute_module(changed=False, commands=[], filename="eos_acls_idempotent.cfg")


def test_eos_acls_gathered(self):
set_module_args(dict(config=[], state="gathered"))
result = self.execute_module(
Expand Down

0 comments on commit 64eefcf

Please sign in to comment.