BAEL-2886 Updated Integration test cases

This commit is contained in:
Pavan Shankar Koli 2019-05-18 08:29:00 +05:30
parent 8ff89c0c05
commit d143f54a51
1 changed files with 2 additions and 2 deletions

View File

@ -35,8 +35,8 @@ public class SpringSessionMongoDBIntegrationTest {
repository.findById(getSessionId(set_cookie)).getAttribute("count").toString());
}
private String getSessionId(String set_cookie) {
return new String(Base64.getDecoder().decode(set_cookie.split(";")[0].split("=")[1]));
private String getSessionId(String cookie) {
return new String(Base64.getDecoder().decode(cookie.split(";")[0].split("=")[1]));
}
}