summaryrefslogtreecommitdiff
path: root/test/units/modules/network/nxos/test_nxos_acl.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/units/modules/network/nxos/test_nxos_acl.py')
-rw-r--r--test/units/modules/network/nxos/test_nxos_acl.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/units/modules/network/nxos/test_nxos_acl.py b/test/units/modules/network/nxos/test_nxos_acl.py
index 6c2163fa05..fce8207ef3 100644
--- a/test/units/modules/network/nxos/test_nxos_acl.py
+++ b/test/units/modules/network/nxos/test_nxos_acl.py
@@ -31,6 +31,8 @@ class TestNxosAclModule(TestNxosModule):
module = nxos_acl
def setUp(self):
+ super(TestNxosAclModule, self).setUp()
+
self.mock_run_commands = patch('ansible.modules.network.nxos.nxos_acl.run_commands')
self.run_commands = self.mock_run_commands.start()
@@ -38,6 +40,7 @@ class TestNxosAclModule(TestNxosModule):
self.load_config = self.mock_load_config.start()
def tearDown(self):
+ super(TestNxosAclModule, self).tearDown()
self.mock_run_commands.stop()
self.mock_load_config.stop()