Commit bf1fcfc8 authored by Phillip Webb's avatar Phillip Webb

Merge pull request #5673 from izeye/patch-50

* patch-50:
  Remove a test doing nothing
parents 99ea724c 10a73381
...@@ -76,11 +76,7 @@ public class FilterAnnotationsTests { ...@@ -76,11 +76,7 @@ public class FilterAnnotationsTests {
FilterAnnotations filterAnnotations = get(FilterByRegex.class); FilterAnnotations filterAnnotations = get(FilterByRegex.class);
assertThat(match(filterAnnotations, ExampleWithAnnotation.class)).isFalse(); assertThat(match(filterAnnotations, ExampleWithAnnotation.class)).isFalse();
assertThat(match(filterAnnotations, ExampleWithoutAnnotation.class)).isTrue(); assertThat(match(filterAnnotations, ExampleWithoutAnnotation.class)).isTrue();
} }
@Test
public void anyMatches() throws Exception {
}
private FilterAnnotations get(Class<?> type) { private FilterAnnotations get(Class<?> type) {
Filters filters = AnnotatedElementUtils.getMergedAnnotation(type, Filters.class); Filters filters = AnnotatedElementUtils.getMergedAnnotation(type, Filters.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