From 38ee1baf786f359c964a411b5c8136bed80b448b Mon Sep 17 00:00:00 2001 From: Salvatore Laiso <32564922+salvatorelaiso@users.noreply.github.com> Date: Fri, 22 Dec 2023 10:37:57 +0100 Subject: [PATCH] fix: update integration test to use the containerized mongodb (#208) * fix: update integration test to use the containerized mongodb * fix: update `CONFIG_DB` --------- Co-authored-by: Salvatore Laiso --- example/satosa/integration_test/settings.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/example/satosa/integration_test/settings.py b/example/satosa/integration_test/settings.py index ae3ffe9c..fe323e53 100644 --- a/example/satosa/integration_test/settings.py +++ b/example/satosa/integration_test/settings.py @@ -27,7 +27,10 @@ "db_trust_attestations_collection": "trust_attestations", "db_trust_anchors_collection": "trust_anchors" }, - "connection_params": {} + "connection_params": { + "username": "satosa", + "password": "thatpassword" + } } } }