summaryrefslogtreecommitdiff
path: root/tests/aa_conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/aa_conf.py')
-rw-r--r--tests/aa_conf.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/aa_conf.py b/tests/aa_conf.py
index 8f728974..48059119 100644
--- a/tests/aa_conf.py
+++ b/tests/aa_conf.py
@@ -12,8 +12,8 @@ CONFIG = {
"service": {
"aa": {
"endpoints": {
- "attribute_service": [(BASE + "as", BINDING_HTTP_REDIRECT)],
- "single_logout_service": [(BASE + "slo", BINDING_SOAP)],
+ "attribute_service": [(f"{BASE}as", BINDING_HTTP_REDIRECT)],
+ "single_logout_service": [(f"{BASE}slo", BINDING_SOAP)],
},
"release_policy": {
"default": {
@@ -25,7 +25,7 @@ CONFIG = {
"subject_data": full_path("aa.db"),
}
},
- "entityid": BASE + "aa",
+ "entityid": f"{BASE}aa",
"name": "Rolands AA",
"debug": 1,
"key_file": full_path("test.key"),