summaryrefslogtreecommitdiffstats
path: root/onap-dcae-cbs-docker-client/tests/test_client.py
diff options
context:
space:
mode:
Diffstat (limited to 'onap-dcae-cbs-docker-client/tests/test_client.py')
-rw-r--r--onap-dcae-cbs-docker-client/tests/test_client.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/onap-dcae-cbs-docker-client/tests/test_client.py b/onap-dcae-cbs-docker-client/tests/test_client.py
index 76249d4..48e1f78 100644
--- a/onap-dcae-cbs-docker-client/tests/test_client.py
+++ b/onap-dcae-cbs-docker-client/tests/test_client.py
@@ -247,7 +247,7 @@ def test_config_file_both_exist(monkeypatch, monkeyed_requests_get):
else:
monkeypatch.delenv("CBS_CLIENT_CONFIG_PATH")
- expected_get_config = {"config": expected_config}
+ expected_get_config = expected_config
for (policy_path, expected_policy, set_policy) in [
("policy/path", json.loads(found_policy_path)['policies'], True),
@@ -292,7 +292,7 @@ def test_config_file_config_exists_policy_does_not(monkeypatch, monkeyed_request
else:
monkeypatch.delenv("CBS_CLIENT_CONFIG_PATH")
- expected_get_config = {"config": expected_config}
+ expected_get_config = expected_config
expected_get_all = {"config": expected_config}
for (policy_path, expected_policy, set_policy) in [
@@ -381,7 +381,7 @@ def test_config_file_various_exceptions(monkeypatch, monkeyed_requests_get):
else:
monkeypatch.delenv("CBS_CLIENT_CONFIG_PATH")
- expected_get_config = {"config": expected_config}
+ expected_get_config = expected_config
expected_get_all = {"config": expected_config}
for policy_path in ["bad/policy", "bad/policy2",