Commit 4900117c authored by Johnny Lim's avatar Johnny Lim Committed by Stephane Nicoll

Restore HttpTraceAutoConfigurationTests.configuresServletFilter()

Closes gh-16885
parent 75c42023
......@@ -91,6 +91,13 @@ public class HttpTraceAutoConfigurationTests {
});
}
@Test
public void configuresServletFilter() {
this.contextRunner.withUserConfiguration(HttpTraceRepositoryConfiguration.class)
.run((context) -> assertThat(context)
.hasSingleBean(HttpTraceFilter.class));
}
@Test
public void usesUserProvidedServletFilter() {
this.contextRunner.withUserConfiguration(HttpTraceRepositoryConfiguration.class)
......
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