File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
tests/unit/modules/network/eos Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff 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 (
You can’t perform that action at this time.
0 commit comments