Rename test class so it runs (#1225)

This commit is contained in:
Brian Devins-Suresh
2019-03-05 14:49:13 -05:00
committed by Adrian Cole
parent f9e029a73f
commit b52723c0ce

View File

@@ -50,6 +50,7 @@ import org.springframework.test.annotation.DirtiesContext;
import org.springframework.test.context.junit4.SpringRunner;
import static org.assertj.core.api.Assertions.assertThat;
import static org.springframework.boot.test.context.SpringBootTest.WebEnvironment;
/**
* Ported from
@@ -58,10 +59,10 @@ import static org.assertj.core.api.Assertions.assertThat;
*
* @author Marcin Grzejszczak
*/
@SpringBootTest(classes = ITTracingChannelInterceptor.App.class, webEnvironment = SpringBootTest.WebEnvironment.NONE)
@SpringBootTest(classes = ITTracingChannelInterceptorTests.App.class, webEnvironment = WebEnvironment.NONE)
@RunWith(SpringRunner.class)
@DirtiesContext
public class ITTracingChannelInterceptor implements MessageHandler {
public class ITTracingChannelInterceptorTests implements MessageHandler {
@Autowired
@Qualifier("directChannel")