Fixed checkstyle issues

This commit is contained in:
Marcin Grzejszczak
2016-03-11 10:06:02 +01:00
parent e4bcd13b8c
commit fb60381766
2 changed files with 3 additions and 3 deletions

View File

@@ -44,14 +44,14 @@ public class TraceWebSocketAutoConfigurationTest {
@Test
public void should_register_interceptors_for_inbound_and_outbound_channels() {
then(delegatingWebSocketMessageBrokerConfiguration
then(this.delegatingWebSocketMessageBrokerConfiguration
.clientInboundChannel()
.getInterceptors()
.stream()
.map(Object::getClass)
.collect(toList()))
.contains(TraceChannelInterceptor.class);
then(delegatingWebSocketMessageBrokerConfiguration
then(this.delegatingWebSocketMessageBrokerConfiguration
.clientOutboundChannel()
.getInterceptors()
.stream()

View File

@@ -94,7 +94,7 @@ public class TraceFilterIntegrationTests extends AbstractMvcIntegrationTest {
@Override
protected void configureMockMvcBuilder(DefaultMockMvcBuilder mockMvcBuilder) {
mockMvcBuilder.addFilters(traceFilter);
mockMvcBuilder.addFilters(this.traceFilter);
}
private MvcResult whenSentPingWithoutTracingData() throws Exception {