Skip to content

Commit a24baca

Browse files
committed
Remove issue annotations from schema rebuild tests
1 parent 78af758 commit a24baca

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

src/test/groovy/graphql/schema/impl/SchemaUtilTest.groovy

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ import graphql.schema.GraphQLUnionType
1919
import graphql.schema.SchemaTransformer
2020
import graphql.util.TraversalControl
2121
import graphql.util.TraverserContext
22-
import spock.lang.Issue
2322
import spock.lang.Specification
2423

2524
import static graphql.Scalars.GraphQLBoolean
@@ -199,7 +198,6 @@ class SchemaUtilTest extends Specification {
199198
!(cacheEnabled.getType() instanceof GraphQLTypeReference)
200199
}
201200

202-
@Issue("https://github.com/graphql-java/graphql-java/issues/3384")
203201
def "can rebuild schema after removing root type that made an implemented interface reachable"() {
204202
given:
205203
def schema = issue3384Schema()
@@ -216,7 +214,6 @@ class SchemaUtilTest extends Specification {
216214
rebuiltSchema.getObjectType("Person").interfaces == [node]
217215
}
218216

219-
@Issue("https://github.com/graphql-java/graphql-java/issues/3384")
220217
def "can transform schema after deleting root type that made an implemented interface reachable"() {
221218
given:
222219
def schema = issue3384Schema()
@@ -239,7 +236,6 @@ class SchemaUtilTest extends Specification {
239236
transformedSchema.getObjectType("Person").interfaces == [node]
240237
}
241238

242-
@Issue("https://github.com/graphql-java/graphql-java/issues/3384")
243239
def "can rebuild schema after removing root type that made a union member reachable"() {
244240
given:
245241
def schema = issue3384UnionSchema()
@@ -256,7 +252,6 @@ class SchemaUtilTest extends Specification {
256252
rebuiltSchema.getType("Pet").types == [cat]
257253
}
258254

259-
@Issue("https://github.com/graphql-java/graphql-java/issues/3384")
260255
def "can rebuild schema after removing root type that made an interface implemented by another interface reachable"() {
261256
given:
262257
def schema = issue3384InterfaceInheritanceSchema()

0 commit comments

Comments
 (0)