Skip to content

Commit

Permalink
Fix checkstyle violation
Browse files Browse the repository at this point in the history
  • Loading branch information
philwebb committed Jun 21, 2023
1 parent eb91a92 commit 7a2fc9e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@
import org.springframework.test.util.ReflectionTestUtils;

import static org.assertj.core.api.Assertions.assertThat;
import static org.mockito.BDDMockito.then;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.spy;
import static org.mockito.Mockito.verify;

/**
* Tests for {@link ClientHttpConnectorFactoryConfiguration}.
Expand Down Expand Up @@ -95,7 +95,7 @@ void shouldApplyHttpClientMapper() {
.run((context) -> {
context.getBean(ReactorClientHttpConnectorFactory.class).createClientHttpConnector(sslBundle);
assertThat(CustomHttpClientMapper.called).isTrue();
verify(sslBundle).getManagers();
then(sslBundle).should().getManagers();
});
}

Expand Down

0 comments on commit 7a2fc9e

Please sign in to comment.