@@ -50,7 +50,7 @@ public void testRemembersSession() throws IOException, SAXException {
5050 // JASPIC is normally stateless, but for this test the SAM uses the register session feature so now
5151 // we should be logged-in when doing a call without explicitly logging in again.
5252
53- response = getFromServerPath ("protected/servlet?continueSession" );
53+ response = getFromServerPath ("protected/servlet?continueSession=true " );
5454
5555 // Logged-in thus should be accessible.
5656 assertTrue (
@@ -72,7 +72,7 @@ public void testRemembersSession() throws IOException, SAXException {
7272
7373 // The session should also be remembered for other resources, including public ones
7474
75- response = getFromServerPath ("public/servlet?continueSession" );
75+ response = getFromServerPath ("public/servlet?continueSession=true " );
7676
7777 // This test almost can't fail, but include for clarity
7878 assertTrue (response .contains ("This is a public servlet" ));
@@ -105,7 +105,7 @@ public void testJoinSessionIsOptional() throws IOException, SAXException {
105105 // JASPIC is normally stateless, but for this test the SAM uses the register session feature so now
106106 // we should be logged-in when doing a call without explicitly logging in again.
107107
108- response = getFromServerPath ("protected/servlet?continueSession" );
108+ response = getFromServerPath ("protected/servlet?continueSession=true " );
109109
110110 // Logged-in thus should be accessible.
111111 assertTrue (
0 commit comments