From 64eefcf826cb0dd3daed884b63d5653f1e327a28 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 30 Dec 2024 19:13:58 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tests/unit/modules/network/eos/test_eos_acls.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tests/unit/modules/network/eos/test_eos_acls.py b/tests/unit/modules/network/eos/test_eos_acls.py index dcefce44..2b411865 100644 --- a/tests/unit/modules/network/eos/test_eos_acls.py +++ b/tests/unit/modules/network/eos/test_eos_acls.py @@ -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", ), @@ -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"), ), @@ -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(