Skip to content

Commit e4e62f1

Browse files
committed
Fix test for annotation type.
1 parent 7f55173 commit e4e62f1

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

byte-buddy-dep/src/test/java/net/bytebuddy/description/annotation/AbstractAnnotationDescriptionTest.java

-1
Original file line numberDiff line numberDiff line change
@@ -785,7 +785,6 @@ public void testIsSupportedOn() throws Exception {
785785
for (ElementType elementType : ElementType.values()) {
786786
assertThat(describe(first).isSupportedOn(elementType), is(!elementType.name().equals("TYPE_PARAMETER")));
787787
}
788-
assertThat(describe(explicitTarget).isSupportedOn((ElementType) null), is(true));
789788
assertThat(describe(explicitTarget).isSupportedOn(ElementType.TYPE), is(true));
790789
assertThat(describe(explicitTarget).isSupportedOn(ElementType.ANNOTATION_TYPE), is(false));
791790
assertThat(describe(explicitTarget).isSupportedOn(ElementType.TYPE.name()), is(true));

0 commit comments

Comments
 (0)