This is an automated email from the ASF dual-hosted git repository. borinquenkid pushed a commit to branch 7.1.x-hibernate6 in repository https://gitbox.apache.org/repos/asf/grails-core.git
commit bd71136212e70c6edd06d39b87178b1d9020c04b Author: Walter Duque de Estrada <[email protected]> AuthorDate: Mon Oct 20 18:32:01 2025 -0500 Fix DataServiceSpec --- .../src/test/groovy/grails/gorm/specs/services/DataServiceSpec.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grails-data-hibernate6/core/src/test/groovy/grails/gorm/specs/services/DataServiceSpec.groovy b/grails-data-hibernate6/core/src/test/groovy/grails/gorm/specs/services/DataServiceSpec.groovy index 32bfcc3a99..b7953fe7e1 100644 --- a/grails-data-hibernate6/core/src/test/groovy/grails/gorm/specs/services/DataServiceSpec.groovy +++ b/grails-data-hibernate6/core/src/test/groovy/grails/gorm/specs/services/DataServiceSpec.groovy @@ -433,7 +433,7 @@ class Product { @EqualsAndHashCode(includes = ["name"]) class Attribute { String name - Product product + static belongsTo = [product: Product] } interface AnotherProductInterface {
