This is an automated email from the ASF dual-hosted git repository. borinquenkid pushed a commit to branch 8.0.x-hibernate7 in repository https://gitbox.apache.org/repos/asf/grails-core.git
commit 192bc2996194b48702ce4aebe6b5740615a4a9f4 Author: Walter B Duque de Estrada <[email protected]> AuthorDate: Thu Jan 29 10:40:10 2026 -0600 Fix SimpleValueBinderSpec constructor call in Hibernate 7 --- .../orm/hibernate/cfg/domainbinding/SimpleValueBinderSpec.groovy | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/grails-data-hibernate7/core/src/test/groovy/org/grails/orm/hibernate/cfg/domainbinding/SimpleValueBinderSpec.groovy b/grails-data-hibernate7/core/src/test/groovy/org/grails/orm/hibernate/cfg/domainbinding/SimpleValueBinderSpec.groovy index 859458f9b5..b7744f98ac 100644 --- a/grails-data-hibernate7/core/src/test/groovy/org/grails/orm/hibernate/cfg/domainbinding/SimpleValueBinderSpec.groovy +++ b/grails-data-hibernate7/core/src/test/groovy/org/grails/orm/hibernate/cfg/domainbinding/SimpleValueBinderSpec.groovy @@ -20,7 +20,8 @@ class SimpleValueBinderSpec extends Specification { def persistentPropertyToPropertyConfig = Mock(PersistentPropertyToPropertyConfig) def typeNameProvider = Mock(TypeNameProvider) - def binder = new SimpleValueBinder(columnConfigToColumnBinder, + def binder = new SimpleValueBinder(namingStrategy, + columnConfigToColumnBinder, columnBinder, persistentPropertyToPropertyConfig, typeNameProvider)
