Add Support for Activation and Deactivation
* Add support for reconfiguration of the administrativeState field
* Add support for policy feedback handling
* Fix network function filter applying to non active network functions
Signed-off-by: ERIMROB <robertas.rimkus@est.tech>
Change-Id: Ic1cfc3207b2495c1d8d10acd0ed1c40114cf4643
Issue-ID: DCAEGEN2-1830
diff --git a/components/pm-subscription-handler/tests/test_config_handler.py b/components/pm-subscription-handler/tests/test_config_handler.py
index 5e80db5..dce48fc 100755
--- a/components/pm-subscription-handler/tests/test_config_handler.py
+++ b/components/pm-subscription-handler/tests/test_config_handler.py
@@ -24,7 +24,7 @@
import responses
from tenacity import wait_none
-from pmsh_service.mod.config_handler import ConfigHandler
+from mod.config_handler import ConfigHandler
class ConfigHandlerTestCase(unittest.TestCase):
@@ -49,7 +49,7 @@
@responses.activate
def test_get_config_success(self):
- responses.add(responses.GET, self.cbs_url, json=json.dumps(self.expected_config),
+ responses.add(responses.GET, self.cbs_url, json=self.expected_config,
status=200)
config_handler = ConfigHandler()