summaryrefslogtreecommitdiff
path: root/tests/test_50_server.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_50_server.py')
-rw-r--r--tests/test_50_server.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_50_server.py b/tests/test_50_server.py
index 0b3d258c..b70f50a3 100644
--- a/tests/test_50_server.py
+++ b/tests/test_50_server.py
@@ -343,7 +343,7 @@ class TestServer1():
}
self.client.users.add_information_about_person(sinfo)
- logout_request = self.client.construct_logout_request(
+ logout_request = self.client._logout_request(
subject_id="foba0001",
destination = "http://localhost:8088/slop",
issuer_entity_id = "urn:mace:example.com:saml:roland:idp",
@@ -370,7 +370,7 @@ class TestServer1():
sp = client.Saml2Client(config_file="server_conf")
sp.users.add_information_about_person(sinfo)
- logout_request = sp.construct_logout_request(subject_id = "foba0001",
+ logout_request = sp._logout_request(subject_id = "foba0001",
destination = "http://localhost:8088/slo",
issuer_entity_id = "urn:mace:example.com:saml:roland:idp",
reason = "I'm tired of this")
@@ -430,7 +430,7 @@ def _logout_request(conf_file):
}
sp.users.add_information_about_person(sinfo)
- return sp.construct_logout_request(
+ return sp._logout_request(
subject_id = "foba0001",
destination = "http://localhost:8088/slo",
issuer_entity_id = "urn:mace:example.com:saml:roland:idp",