Commit bae1d8d7 authored by Stephane Nicoll's avatar Stephane Nicoll

Polish "Use new AssertJ duration assertions"

See gh-19985
parent fac6f08c
...@@ -74,8 +74,7 @@ class WebTestClientAutoConfigurationTests { ...@@ -74,8 +74,7 @@ class WebTestClientAutoConfigurationTests {
this.contextRunner.withUserConfiguration(BaseConfiguration.class) this.contextRunner.withUserConfiguration(BaseConfiguration.class)
.withPropertyValues("spring.test.webtestclient.timeout=15m").run((context) -> { .withPropertyValues("spring.test.webtestclient.timeout=15m").run((context) -> {
WebTestClient webTestClient = context.getBean(WebTestClient.class); WebTestClient webTestClient = context.getBean(WebTestClient.class);
Duration duration = (Duration) ReflectionTestUtils.getField(webTestClient, "timeout"); assertThat(webTestClient).hasFieldOrPropertyWithValue("timeout", Duration.ofMinutes(15));
assertThat(duration).hasMinutes(15);
}); });
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment