summaryrefslogtreecommitdiff
path: root/tests/disco_conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/disco_conf.py')
-rw-r--r--tests/disco_conf.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/disco_conf.py b/tests/disco_conf.py
index 0eafa707..cb119758 100644
--- a/tests/disco_conf.py
+++ b/tests/disco_conf.py
@@ -7,13 +7,13 @@ from saml2.extension.idpdisc import BINDING_DISCO
BASE = "http://localhost:8088"
CONFIG = {
- "entityid": "%s/disco.xml" % BASE,
+ "entityid": f"{BASE}/disco.xml",
"name": "Rolands Discoserver",
"service": {
"ds": {
"endpoints": {
"disco_service": [
- ("%s/disco" % BASE, BINDING_DISCO),
+ (f"{BASE}/disco", BINDING_DISCO),
]
},
},