From 0fc390c8ec64825b5045800e36f237c57852c861 Mon Sep 17 00:00:00 2001 From: Vinay Date: Fri, 7 Jul 2023 16:34:30 +0530 Subject: [PATCH] sanity fix --- changelogs/fragments/rework_ospfv2.yml | 2 +- plugins/module_utils/network/ios/rm_templates/ospfv2.py | 1 - tests/unit/modules/network/ios/test_ios_ospfv2.py | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/changelogs/fragments/rework_ospfv2.yml b/changelogs/fragments/rework_ospfv2.yml index 28b1ee196..ddf66b3b7 100644 --- a/changelogs/fragments/rework_ospfv2.yml +++ b/changelogs/fragments/rework_ospfv2.yml @@ -1,2 +1,2 @@ -major_changes: +minor_changes: - major rework on ospfv2 module diff --git a/plugins/module_utils/network/ios/rm_templates/ospfv2.py b/plugins/module_utils/network/ios/rm_templates/ospfv2.py index 2731853b2..c6340e448 100644 --- a/plugins/module_utils/network/ios/rm_templates/ospfv2.py +++ b/plugins/module_utils/network/ios/rm_templates/ospfv2.py @@ -5,7 +5,6 @@ import re -from ansible.module_utils.six import iteritems from ansible_collections.ansible.netcommon.plugins.module_utils.network.common.rm_base.network_template import ( NetworkTemplate, ) diff --git a/tests/unit/modules/network/ios/test_ios_ospfv2.py b/tests/unit/modules/network/ios/test_ios_ospfv2.py index 9f7e2e150..22d2294f7 100644 --- a/tests/unit/modules/network/ios/test_ios_ospfv2.py +++ b/tests/unit/modules/network/ios/test_ios_ospfv2.py @@ -14,7 +14,7 @@ from ansible_collections.cisco.ios.tests.unit.compat.mock import patch from ansible_collections.cisco.ios.tests.unit.modules.utils import set_module_args -from .ios_module import TestIosModule, load_fixture +from .ios_module import TestIosModule class TestIosOspfV2Module(TestIosModule):