1
0
mirror of synced 2026-08-05 17:57:15 +00:00

Update to assertj 3.11.1

Fixes: gh-6170
This commit is contained in:
Rob Winch
2018-11-28 09:23:06 -06:00
parent 563a055158
commit cbf1c3d45a
2 changed files with 2 additions and 2 deletions
@@ -66,7 +66,7 @@ public class EnableReactiveMethodSecurityTests {
assertThatThrownBy(() -> this.messageService.notPublisherPreAuthorizeFindById(1L))
.isInstanceOf(IllegalStateException.class)
.extracting(Throwable::getMessage)
.contains("The returnType class java.lang.String on public abstract java.lang.String org.springframework.security.config.annotation.method.configuration.ReactiveMessageService.notPublisherPreAuthorizeFindById(long) must return an instance of org.reactivestreams.Publisher (i.e. Mono / Flux) in order to support Reactor Context");
.isEqualTo("The returnType class java.lang.String on public abstract java.lang.String org.springframework.security.config.annotation.method.configuration.ReactiveMessageService.notPublisherPreAuthorizeFindById(long) must return an instance of org.reactivestreams.Publisher (i.e. Mono / Flux) in order to support Reactor Context");
}
@Test