diff options
author | SagarS <sagar.shetty@est.tech> | 2021-08-16 16:55:10 +0100 |
---|---|---|
committer | SagarS <sagar.shetty@est.tech> | 2021-08-26 13:25:20 +0100 |
commit | 4b80d09d8c55c6361dcea126e267ae7207bdaac3 (patch) | |
tree | 583fbef61ddf976395380b5981f7cc3af932c90e /components/pm-subscription-handler/tests/test_subscription_handler.py | |
parent | 1972718be2da50d09ea3284a7ab1746952be4cbb (diff) |
Subscription API DB changes with IPV4, IPV6 updates1.3.2-pmsh
Issue-ID: DCAEGEN2-2823
Change-Id: Ie455b1016ae1372934fa874667226ca9972b8d7f
Signed-off-by: SagarS <sagar.shetty@est.tech>
Diffstat (limited to 'components/pm-subscription-handler/tests/test_subscription_handler.py')
-rw-r--r-- | components/pm-subscription-handler/tests/test_subscription_handler.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/components/pm-subscription-handler/tests/test_subscription_handler.py b/components/pm-subscription-handler/tests/test_subscription_handler.py index 2293ee50..ecc45f66 100644 --- a/components/pm-subscription-handler/tests/test_subscription_handler.py +++ b/components/pm-subscription-handler/tests/test_subscription_handler.py @@ -109,7 +109,8 @@ class SubscriptionHandlerTest(BaseClassSetup): MagicMock(return_value=NetworkFunctionModel(nf_name='pnf_1', model_invariant_id='some-id', model_version_id='some-id', - ip_address='ip_address', + ipv4_address='ip_address4', + ipv6_address='ip_address6', model_name='model_name', sdnc_model_name='sdnc_model_name', sdnc_model_version='sdnc_model_version'))) @@ -145,7 +146,8 @@ class SubscriptionHandlerTest(BaseClassSetup): MagicMock(return_value=NetworkFunctionModel(nf_name='pnf_1', model_invariant_id='some-id', model_version_id='some-id', - ip_address='ip_address', + ipv4_address='ip_address4', + ipv6_address='ip_address6', model_name='model_name', sdnc_model_name='sdnc_model_name', sdnc_model_version='sdnc_model_version', |