Skip to content

Commit 64eefcf

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 59f2bd6 commit 64eefcf

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

tests/unit/modules/network/eos/test_eos_acls.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,9 @@ def test_eos_two_acls_idempotent(self):
415415
sequence="20",
416416
grant="permit",
417417
source=dict(subnet_address="192.0.2.0/24"),
418-
destination=dict(any="true", port_protocol=dict(eq="https")),
418+
destination=dict(
419+
any="true", port_protocol=dict(eq="https")
420+
),
419421
protocol="tcp",
420422
log="true",
421423
),
@@ -432,7 +434,9 @@ def test_eos_two_acls_idempotent(self):
432434
sequence="20",
433435
grant="permit",
434436
log="true",
435-
destination=dict(any="true", port_protocol=dict(eq="https")),
437+
destination=dict(
438+
any="true", port_protocol=dict(eq="https")
439+
),
436440
protocol="tcp",
437441
source=dict(subnet_address="192.0.2.0/24"),
438442
),
@@ -446,7 +450,6 @@ def test_eos_two_acls_idempotent(self):
446450
)
447451
self.execute_module(changed=False, commands=[], filename="eos_acls_idempotent.cfg")
448452

449-
450453
def test_eos_acls_gathered(self):
451454
set_module_args(dict(config=[], state="gathered"))
452455
result = self.execute_module(

0 commit comments

Comments
 (0)