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 d038c555952e4afa25c7c6ee3841b5c7a2d50920 Author: Walter Duque de Estrada <[email protected]> AuthorDate: Thu Jun 18 17:24:38 2026 -0500 Revert unnecessary empty-map params in GormCascadeOperationsSpec Missed in the previous revert commit; restores single-argument executeUpdate calls that need no named parameters map. Co-Authored-By: Claude Sonnet 4.6 <[email protected]> --- .../integration-test/groovy/gorm/GormCascadeOperationsSpec.groovy | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/grails-test-examples/gorm/src/integration-test/groovy/gorm/GormCascadeOperationsSpec.groovy b/grails-test-examples/gorm/src/integration-test/groovy/gorm/GormCascadeOperationsSpec.groovy index 11b9a722cf..931db50d6e 100644 --- a/grails-test-examples/gorm/src/integration-test/groovy/gorm/GormCascadeOperationsSpec.groovy +++ b/grails-test-examples/gorm/src/integration-test/groovy/gorm/GormCascadeOperationsSpec.groovy @@ -41,10 +41,10 @@ class GormCascadeOperationsSpec extends Specification { def setup() { // Clean up test data - Book.executeUpdate('delete from Book', [:]) - Author.executeUpdate('delete from Author', [:]) - User.executeUpdate('delete from User', [:]) - City.executeUpdate('delete from City', [:]) + Book.executeUpdate('delete from Book') + Author.executeUpdate('delete from Author') + User.executeUpdate('delete from User') + City.executeUpdate('delete from City') } // ============================================
