Skip to content

Commit

Permalink
try fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
graemerocher committed Jan 14, 2025
1 parent aedd698 commit 0db02f8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1281,7 +1281,7 @@ annotation class NotNull
def supertypeMethods = definition.getBeanType().getSuperclass().getDeclaredMethods()
.findAll { !it.name.contains('$jacoco')}
then:
supertypeMethods.collect { it.name}.contains(doWorkMethod.name)
supertypeMethods.every {doWorkMethod.name.contains(it.name)}
}

void "test java class value annotation"() {
Expand Down

0 comments on commit 0db02f8

Please sign in to comment.