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 8bbe15fe1698e01399b106b972ea7ac4f601cf0a Author: Walter B Duque de Estrada <[email protected]> AuthorDate: Tue Jan 20 10:38:09 2026 -0600 update progress --- .../gorm/specs/dirtychecking/HibernateUpdateFromListenerSpec.groovy | 3 +++ 1 file changed, 3 insertions(+) diff --git a/grails-data-hibernate7/core/src/test/groovy/grails/gorm/specs/dirtychecking/HibernateUpdateFromListenerSpec.groovy b/grails-data-hibernate7/core/src/test/groovy/grails/gorm/specs/dirtychecking/HibernateUpdateFromListenerSpec.groovy index 0a5ab4f706..de5c8f6d86 100644 --- a/grails-data-hibernate7/core/src/test/groovy/grails/gorm/specs/dirtychecking/HibernateUpdateFromListenerSpec.groovy +++ b/grails-data-hibernate7/core/src/test/groovy/grails/gorm/specs/dirtychecking/HibernateUpdateFromListenerSpec.groovy @@ -85,6 +85,9 @@ class HibernateUpdateFromListenerSpec extends Specification { if (event.entityObject instanceof Person) { Person person = (Person) event.entityObject person.occupation = person.occupation + " listener" + if (event.getEntityAccess() != null) { + event.getEntityAccess().setProperty("occupation", person.occupation) + } } isExecuted = true }
