aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_settings.py')
-rw-r--r--tests/test_settings.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_settings.py b/tests/test_settings.py
index 154eed0..96ec460 100644
--- a/tests/test_settings.py
+++ b/tests/test_settings.py
@@ -24,7 +24,7 @@ from onapsdk.exceptions import ModuleError
def test_global_settings():
"""Test global settings."""
- assert len(settings._settings) == 49
+ assert len(settings._settings) == 50
assert settings.AAI_URL == "https://aai.api.sparky.simpledemo.onap.org:30233"
assert settings.CDS_URL == "http://portal.api.simpledemo.onap.org:30449"
assert settings.SDNC_URL == "https://sdnc.api.simpledemo.onap.org:30267"
@@ -66,6 +66,7 @@ def test_global_settings():
assert hasattr(settings, "SO_AUTH")
assert hasattr(settings, "SO_CAT_DB_AUTH")
assert hasattr(settings, "SDC_SERVICE_DISTRIBUTION_COMPONENTS")
+ assert hasattr(settings, "SDC_SERVICE_DISTRIBUTION_DESIRED_STATE")
def test_settings_load_custom():
"""Test if custom settings is loaded correctly."""