This is an automated email from the ASF dual-hosted git repository. vlamp pushed a commit to branch TAP5-2723 in repository https://gitbox.apache.org/repos/asf/tapestry-5.git
commit 1ab18d2620a4d827b0dfed9802f38b0a63bb97a2 Author: Volker Lamp <vl...@apache.org> AuthorDate: Mon May 30 21:41:30 2022 +0200 Fixed MissingPropertyException at GeneralIntegrationSpec.groovy:60. --- tapestry-ioc/src/test/groovy/ioc/specs/GeneralIntegrationSpec.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tapestry-ioc/src/test/groovy/ioc/specs/GeneralIntegrationSpec.groovy b/tapestry-ioc/src/test/groovy/ioc/specs/GeneralIntegrationSpec.groovy index 7bf798985..ea3a16a23 100644 --- a/tapestry-ioc/src/test/groovy/ioc/specs/GeneralIntegrationSpec.groovy +++ b/tapestry-ioc/src/test/groovy/ioc/specs/GeneralIntegrationSpec.groovy @@ -57,7 +57,7 @@ class GeneralIntegrationSpec extends AbstractSharedRegistrySpecification { Registry registry = RegistryBuilder.buildAndStartupRegistry(TestModule.class); InterfaceWithDefaultMethod service = registry.getService(InterfaceWithDefaultMethod.class) then: - service.staticMethod == InterfaceWithDefaultMethod.STATIC_METHOD_RETURN_VALUE; + service.staticMethod() == InterfaceWithDefaultMethod.STATIC_METHOD_RETURN_VALUE; }