Mono<CsrfToken> saveToken->Mono<Void>

Issue: gh-4856
This commit is contained in:
Rob Winch
2017-11-20 16:25:33 -06:00
parent d55db837e1
commit 70be0f3619
4 changed files with 6 additions and 7 deletions

View File

@@ -78,7 +78,7 @@ public class WebSessionServerCsrfTokenRepositoryTests {
public void saveTokenWhenNullThenDeletes() {
CsrfToken token = this.repository.generateToken(this.exchange).block();
Mono<CsrfToken> result = this.repository.saveToken(this.exchange, null);
Mono<Void> result = this.repository.saveToken(this.exchange, null);
StepVerifier.create(result)
.verifyComplete();