Fix exception message

Fixes gh-13783
pull/13815/head
Madhura Bhave 6 years ago
parent 777fc5e464
commit 9bd723ddad

@ -88,7 +88,7 @@ public abstract class ApplicationContextServerWebExchangeMatcher<C>
@SuppressWarnings("unchecked")
private Supplier<C> createContext(ServerWebExchange exchange) {
ApplicationContext context = exchange.getApplicationContext();
Assert.state(context != null, "No WebApplicationContext found.");
Assert.state(context != null, "No ApplicationContext found.");
if (this.contextClass.isInstance(context)) {
return () -> (C) context;
}

Loading…
Cancel
Save