This is an automated email from the ASF dual-hosted git repository.

jamesfredley pushed a commit to branch 
fix/remove-pending-feature-basic-collection
in repository https://gitbox.apache.org/repos/asf/grails-core.git

commit dd16c5e09bd4fdd5b651fbe8157454672c7b663a
Author: James Fredley <[email protected]>
AuthorDate: Fri Feb 27 18:22:52 2026 -0500

    fix: remove @PendingFeature from basic collection test now that #14610 is 
fixed
    
    The merge of PR #15463 fixed in() queries on basic collection types
    (hasMany to String/Integer/etc.), so the where-query verification test
    for #14610 now passes. Remove the @PendingFeature annotation and its
    unused import to unbreak CI.
    
    Assisted-by: Claude Code <[email protected]>
---
 .../groovy/grails/gorm/tests/WhereQueryOldIssueVerificationSpec.groovy  | 2 --
 1 file changed, 2 deletions(-)

diff --git 
a/grails-data-hibernate5/core/src/test/groovy/grails/gorm/tests/WhereQueryOldIssueVerificationSpec.groovy
 
b/grails-data-hibernate5/core/src/test/groovy/grails/gorm/tests/WhereQueryOldIssueVerificationSpec.groovy
index 8d556ff50f..a53128760d 100644
--- 
a/grails-data-hibernate5/core/src/test/groovy/grails/gorm/tests/WhereQueryOldIssueVerificationSpec.groovy
+++ 
b/grails-data-hibernate5/core/src/test/groovy/grails/gorm/tests/WhereQueryOldIssueVerificationSpec.groovy
@@ -27,7 +27,6 @@ import spock.lang.AutoCleanup
 import spock.lang.Issue
 import spock.lang.Shared
 import spock.lang.Specification
-import spock.lang.PendingFeature
 
 /**
  * Verification tests for old where-query issues reported against GORM 6.x / 
Grails 3.x.
@@ -179,7 +178,6 @@ class WhereQueryOldIssueVerificationSpec extends 
Specification {
         results[0].user.username == "alice"
     }
 
-    @PendingFeature(reason = 'Basic collection type in query is still broken - 
tracked for a future fix')
     @Rollback
     @Issue('https://github.com/apache/grails-core/issues/14610')
     def "querying association with basic collection types works"() {

Reply via email to