@@ -50,7 +50,7 @@ public void testRemembersSession() throws IOException, SAXException {
50
50
// JASPIC is normally stateless, but for this test the SAM uses the register session feature so now
51
51
// we should be logged-in when doing a call without explicitly logging in again.
52
52
53
- response = getFromServerPath ("protected/servlet?continueSession" );
53
+ response = getFromServerPath ("protected/servlet?continueSession=true " );
54
54
55
55
// Logged-in thus should be accessible.
56
56
assertTrue (
@@ -72,7 +72,7 @@ public void testRemembersSession() throws IOException, SAXException {
72
72
73
73
// The session should also be remembered for other resources, including public ones
74
74
75
- response = getFromServerPath ("public/servlet?continueSession" );
75
+ response = getFromServerPath ("public/servlet?continueSession=true " );
76
76
77
77
// This test almost can't fail, but include for clarity
78
78
assertTrue (response .contains ("This is a public servlet" ));
@@ -105,7 +105,7 @@ public void testJoinSessionIsOptional() throws IOException, SAXException {
105
105
// JASPIC is normally stateless, but for this test the SAM uses the register session feature so now
106
106
// we should be logged-in when doing a call without explicitly logging in again.
107
107
108
- response = getFromServerPath ("protected/servlet?continueSession" );
108
+ response = getFromServerPath ("protected/servlet?continueSession=true " );
109
109
110
110
// Logged-in thus should be accessible.
111
111
assertTrue (
0 commit comments