diff options
author | Tony Hansen <tony@att.com> | 2022-01-11 23:23:25 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2022-01-11 23:23:25 +0000 |
commit | 54b8d2537deba7fdc8c9e63fc73e97ecdc63368a (patch) | |
tree | 0272608e012c14f307d42071d9a3687b142f871c /components/pm-subscription-handler/tests/base_setup.py | |
parent | 53eb6e657adf157d0536b4cf972c14a2344e6508 (diff) | |
parent | 33f78d6a26ab2f8116cf400faf66c8b8fa08793a (diff) |
Merge "[DCAEGEN2] PMSH Lazy loading error fix"
Diffstat (limited to 'components/pm-subscription-handler/tests/base_setup.py')
-rwxr-xr-x | components/pm-subscription-handler/tests/base_setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/pm-subscription-handler/tests/base_setup.py b/components/pm-subscription-handler/tests/base_setup.py index 560eaeb8..14f813d4 100755 --- a/components/pm-subscription-handler/tests/base_setup.py +++ b/components/pm-subscription-handler/tests/base_setup.py @@ -1,5 +1,5 @@ # ============LICENSE_START=================================================== -# Copyright (C) 2020-2021 Nordix Foundation. +# Copyright (C) 2020-2022 Nordix Foundation. # ============================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -86,6 +86,7 @@ def create_multiple_subscription_data(subscription_names): subscriptions = [] for subscription_name in subscription_names: subscriptions.append(create_subscription_data(subscription_name)) + subscriptions[1].nfs = [] return subscriptions |