This is an automated email from the ASF dual-hosted git repository. jdaugherty pushed a commit to branch grails-geb in repository https://gitbox.apache.org/repos/asf/grails-core.git
commit 3a676da465de4a722826bbdbccc3087074bdad51 Author: James Daugherty <[email protected]> AuthorDate: Mon Apr 21 11:06:45 2025 -0400 Restore domain inheritance to fix test --- .../grails/plugin/formfields/FormFieldsTemplateServiceSpec.groovy | 1 - .../src/test/groovy/grails/plugin/formfields/mock/Employee.groovy | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/grails-fields/src/test/groovy/grails/plugin/formfields/FormFieldsTemplateServiceSpec.groovy b/grails-fields/src/test/groovy/grails/plugin/formfields/FormFieldsTemplateServiceSpec.groovy index bbceae5d01..a4c6f71206 100644 --- a/grails-fields/src/test/groovy/grails/plugin/formfields/FormFieldsTemplateServiceSpec.groovy +++ b/grails-fields/src/test/groovy/grails/plugin/formfields/FormFieldsTemplateServiceSpec.groovy @@ -625,7 +625,6 @@ class FormFieldsTemplateServiceSpec extends BuildsAccessorFactory implements Ser render(template: template.path) == 'DEFAULT FIELD TEMPLATE' } - @PendingFeature(reason = 'until domain class inheritance works in Groovy 4') def "resolves template for superclass property"() { given: views["/_fields/default/_wrapper.gsp"] = 'DEFAULT FIELD TEMPLATE' diff --git a/grails-fields/src/test/groovy/grails/plugin/formfields/mock/Employee.groovy b/grails-fields/src/test/groovy/grails/plugin/formfields/mock/Employee.groovy index 16509d29fb..94fcf55424 100644 --- a/grails-fields/src/test/groovy/grails/plugin/formfields/mock/Employee.groovy +++ b/grails-fields/src/test/groovy/grails/plugin/formfields/mock/Employee.groovy @@ -3,7 +3,7 @@ package grails.plugin.formfields.mock import grails.persistence.Entity @Entity -class Employee extends HomoSapiens { +class Employee extends Person { int salary
