diff --git a/src/main/groovy/nebula/test/BaseIntegrationSpec.groovy b/src/main/groovy/nebula/test/BaseIntegrationSpec.groovy index e8395f6..917c9db 100644 --- a/src/main/groovy/nebula/test/BaseIntegrationSpec.groovy +++ b/src/main/groovy/nebula/test/BaseIntegrationSpec.groovy @@ -76,10 +76,7 @@ abstract class BaseIntegrationSpec extends Specification { protected static void checkForDeprecations(String output) { def deprecations = output.readLines().findAll { - it.contains("has been deprecated and is scheduled to be removed in Gradle") || - it.contains("Deprecated Gradle features were used in this build") || - it.contains("has been deprecated. This is scheduled to be removed in Gradle") || - it.contains("This behaviour has been deprecated and is scheduled to be removed in Gradle") + it.contains("has been deprecated and is scheduled to be removed in Gradle") || it.contains("Deprecated Gradle features were used in this build") } // temporary for known issue with overwriting task // overridden task expected to not be needed in future version