updated getSessionId test case

pull/583/head
Ajay Kumar 2020-12-29 11:40:44 +05:30
parent b779717d5f
commit 7e34d7504e
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ public class SessionGarbageCollectorIntegrationTest {
}
private String getSessionId() {
String stringResponse = (String) sessionRestController.initializeSession(new HashMap<>()).getBody();
String stringResponse = (String) sessionRestController.initializeSession(new HashMap<>(), new javax.servlet.http.HttpServletRequest()).getBody();
return new Gson().fromJson(stringResponse, JsonObject.class).get("id").getAsString();
}