diff options
author | Michal Jagiello <michal.jagiello@t-mobile.pl> | 2023-06-12 14:36:21 +0000 |
---|---|---|
committer | Michal Jagiello <michal.jagiello@t-mobile.pl> | 2023-06-12 14:36:21 +0000 |
commit | 0cf07628eefad6b567b8617583946314dd3ceea4 (patch) | |
tree | d2d71d2d16c892c3dd049c843063ceee79097d4a /tests/test_settings.py | |
parent | e05c376573b67f72a5b8df931ecce0b18841f540 (diff) |
[SO] Add SO catalog db adapter class
To communicate with so-catalog-db-adapter service
Issue-ID: INT-2226
Signed-off-by: Michal Jagiello <michal.jagiello@t-mobile.pl>
Change-Id: Id181c66f6e89cae314a6973798027bf3c831dab7
Diffstat (limited to 'tests/test_settings.py')
-rw-r--r-- | tests/test_settings.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_settings.py b/tests/test_settings.py index 0ecaf88..438b3c5 100644 --- a/tests/test_settings.py +++ b/tests/test_settings.py @@ -24,10 +24,11 @@ from onapsdk.exceptions import ModuleError def test_global_settings(): """Test global settings.""" - assert len(settings._settings) == 45 + assert len(settings._settings) == 46 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" + assert settings.SO_CATALOG_DB_ADAPTER_URL == "http://so-catalog-db-adapter:8082" assert settings.SO_URL == "http://so.api.simpledemo.onap.org:30277" assert settings.MSB_URL == "https://msb.api.simpledemo.onap.org:30283" assert settings.K8SPLUGIN_URL == "http://k8splugin.api.simpledemo.onap.org:30455" |