This is an automated email from the ASF dual-hosted git repository. matrei pushed a commit to branch 8.0.x-hibernate7 in repository https://gitbox.apache.org/repos/asf/grails-core.git
commit 2b8bf814af3a2fa84ffeac025b05eea6fb980628 Author: Mattias Reichel <[email protected]> AuthorDate: Mon Jun 15 16:05:22 2026 +0200 test: fix another package location after merge Merge changed package back to `grails.gorm.tests`. Align package and imports accordingly. --- .../test/groovy/grails/gorm/tests/HibernateMappingFactorySpec.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grails-data-hibernate7/core/src/test/groovy/grails/gorm/tests/HibernateMappingFactorySpec.groovy b/grails-data-hibernate7/core/src/test/groovy/grails/gorm/tests/HibernateMappingFactorySpec.groovy index 5514b32cf1..765112812d 100644 --- a/grails-data-hibernate7/core/src/test/groovy/grails/gorm/tests/HibernateMappingFactorySpec.groovy +++ b/grails-data-hibernate7/core/src/test/groovy/grails/gorm/tests/HibernateMappingFactorySpec.groovy @@ -391,7 +391,7 @@ class MappingFactoryMetadata { class MappingFactoryCustomIdEntity implements HibernateEntity<MappingFactoryCustomIdEntity> { String name static mapping = { - id generator: 'grails.gorm.specs.FactoryCustomType', type: 'uuid-binary' + id generator: 'grails.gorm.tests.FactoryCustomType', type: 'uuid-binary' } }
