This is an automated email from the ASF dual-hosted git repository. benw pushed a commit to branch gradle-improvements in repository https://gitbox.apache.org/repos/asf/tapestry-5.git
commit 49a05260d7d0bcf65a30d08261809297a5979572 Author: Ben Weidig <b...@netzgut.net> AuthorDate: Sun Jun 15 13:47:59 2025 +0200 TAP5-2809: Fix groovy test --- tapestry-ioc/src/test/groovy/ioc/specs/ChainBuilderImplSpec.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tapestry-ioc/src/test/groovy/ioc/specs/ChainBuilderImplSpec.groovy b/tapestry-ioc/src/test/groovy/ioc/specs/ChainBuilderImplSpec.groovy index 12ff3a7dc..8ec96b1f5 100644 --- a/tapestry-ioc/src/test/groovy/ioc/specs/ChainBuilderImplSpec.groovy +++ b/tapestry-ioc/src/test/groovy/ioc/specs/ChainBuilderImplSpec.groovy @@ -118,7 +118,7 @@ class ChainBuilderImplSpec extends AbstractSharedRegistrySpecification { chain.toString() == "<Command chain of ioc.specs.ChainCommand>" } - final private static class InterfaceWithStaticMethodImpl extends InterfaceWithStaticMethod + final private static class InterfaceWithStaticMethodImpl implements InterfaceWithStaticMethod { public int something() { return 2; } }