@@ -8,7 +8,7 @@ class RequestTest < Minitest::Test
88 let ( :settings ) { OneLogin ::RubySaml ::Settings . new }
99
1010 before do
11- settings . idp_slo_target_url = "http://unauth.com/logout"
11+ settings . idp_slo_service_url = "http://unauth.com/logout"
1212 settings . name_identifier_value = "f00f00"
1313 end
1414
@@ -43,7 +43,7 @@ class RequestTest < Minitest::Test
4343 end
4444
4545 it "set sessionindex" do
46- settings . idp_slo_target_url = "http://example.com"
46+ settings . idp_slo_service_url = "http://example.com"
4747 sessionidx = OneLogin ::RubySaml ::Utils . uuid
4848 settings . sessionindex = sessionidx
4949
@@ -75,7 +75,7 @@ class RequestTest < Minitest::Test
7575
7676 describe "when the target url contains a query string" do
7777 it "create the SAMLRequest parameter correctly" do
78- settings . idp_slo_target_url = "http://example.com?field=value"
78+ settings . idp_slo_service_url = "http://example.com?field=value"
7979
8080 unauth_url = OneLogin ::RubySaml ::Logoutrequest . new . create ( settings )
8181 assert_match /^http:\/ \/ example.com\? field=value&SAMLRequest/ , unauth_url
@@ -84,7 +84,7 @@ class RequestTest < Minitest::Test
8484
8585 describe "consumation of logout may need to track the transaction" do
8686 it "have access to the request uuid" do
87- settings . idp_slo_target_url = "http://example.com?field=value"
87+ settings . idp_slo_service_url = "http://example.com?field=value"
8888
8989 unauth_req = OneLogin ::RubySaml ::Logoutrequest . new
9090 unauth_url = unauth_req . create ( settings )
0 commit comments