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 4e2c153f846dc66c1a9e0faeccba9e6096c9123c Author: Walter Duque de Estrada <[email protected]> AuthorDate: Sun Nov 9 19:42:23 2025 -0600 Picked up another test --- .../groovy/org/grails/orm/hibernate/HibernateGormStaticApiSpec.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grails-data-hibernate6/core/src/test/groovy/org/grails/orm/hibernate/HibernateGormStaticApiSpec.groovy b/grails-data-hibernate6/core/src/test/groovy/org/grails/orm/hibernate/HibernateGormStaticApiSpec.groovy index 2b422d1168..a60c0b021d 100644 --- a/grails-data-hibernate6/core/src/test/groovy/org/grails/orm/hibernate/HibernateGormStaticApiSpec.groovy +++ b/grails-data-hibernate6/core/src/test/groovy/org/grails/orm/hibernate/HibernateGormStaticApiSpec.groovy @@ -449,7 +449,7 @@ class HibernateGormStaticApiSpec extends HibernateGormDatastoreSpec { List<Club> results = Club.findAllWithSql("select * from club c where c.name like $p order by c.name") then:"The results are correct" - thrown(GrailsQueryException) + results.size() == 2 } void "test escape HQL in findAll with gstring"() {
