Fix InMemoryWebSessionStoreTests.startsSessionImplicitly() test
(cherry picked from commit 3c265e1044
)
This commit is contained in:
parent
a876bb41af
commit
59d2895c82
|
@ -53,7 +53,8 @@ class InMemoryWebSessionStoreTests {
|
|||
void startsSessionImplicitly() {
|
||||
WebSession session = this.store.createWebSession().block();
|
||||
assertThat(session).isNotNull();
|
||||
session.start();
|
||||
// We intentionally do not invoke start().
|
||||
// session.start();
|
||||
session.getAttributes().put("foo", "bar");
|
||||
assertThat(session.isStarted()).isTrue();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue