We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47a59a9 commit 8f18df8Copy full SHA for 8f18df8
spring-boot-test/src/main/java/org/springframework/boot/test/context/ImportsContextCustomizer.java
@@ -324,8 +324,8 @@ private static final class SpockAnnotationFilter implements AnnotationFilter {
324
325
@Override
326
public boolean isIgnored(Annotation annotation) {
327
- return annotation.annotationType().getName()
328
- .startsWith("org.spockframework.");
+ return annotation.annotationType().getName().startsWith("org.spockframework.") ||
+ annotation.annotationType().getName().startsWith("spock.");
329
}
330
331
0 commit comments