Reactive Basic does not create session by default

Fixes: gh-4825
This commit is contained in:
Rob Winch
2017-11-15 09:59:51 -06:00
parent 5f79fdd3eb
commit 942b51dba7
4 changed files with 8 additions and 9 deletions

View File

@@ -100,7 +100,7 @@ public class ServerHttpSecurityTests {
.expectBody(String.class).consumeWith(b -> assertThat(b.getResponseBody()).isEqualTo("ok"))
.returnResult();
assertThat(result.getResponseCookies().getFirst("SESSION")).isNotNull();
assertThat(result.getResponseCookies().getFirst("SESSION")).isNull();
}
@Test