This is an automated email from the ASF dual-hosted git repository. benw pushed a commit to branch gradle-improvements-javax in repository https://gitbox.apache.org/repos/asf/tapestry-5.git
commit 4be4227d5778b8ee5016b543f0c2e51bca753ae9 Author: Ben Weidig <[email protected]> AuthorDate: Sun Aug 3 16:36:05 2025 +0200 TAP5-2809: disabled another test relying on Groovy weirdness --- tapestry-ioc/src/test/groovy/ioc/specs/GeneralIntegrationSpec.groovy | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tapestry-ioc/src/test/groovy/ioc/specs/GeneralIntegrationSpec.groovy b/tapestry-ioc/src/test/groovy/ioc/specs/GeneralIntegrationSpec.groovy index ea3a16a23..376574bd4 100644 --- a/tapestry-ioc/src/test/groovy/ioc/specs/GeneralIntegrationSpec.groovy +++ b/tapestry-ioc/src/test/groovy/ioc/specs/GeneralIntegrationSpec.groovy @@ -16,6 +16,8 @@ import org.apache.tapestry5.plastic.MethodInvocation import org.hibernate.Session import org.hibernate.cfg.Configuration +import spock.lang.Ignore + class GeneralIntegrationSpec extends AbstractSharedRegistrySpecification { def "PropertyAccess service is available"() { @@ -52,6 +54,9 @@ class GeneralIntegrationSpec extends AbstractSharedRegistrySpecification { } // TAP5-2667 + // This test no longer works as calling static methods on instances was a Groovy bug + // See: https://issues.apache.org/jira/browse/GROOVY-10590 + @Ignore def "Default methods in a service should be skipped while introducing methods and advising methods"() { when: Registry registry = RegistryBuilder.buildAndStartupRegistry(TestModule.class);
