We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79f3aa5 commit 804e423Copy full SHA for 804e423
1 file changed
src/test/groovy/graphql/execution/incremental/DeferExecutionSupportIntegrationTest.groovy
@@ -1624,12 +1624,13 @@ class DeferExecutionSupportIntegrationTest extends Specification {
1624
}
1625
'''
1626
when:
1627
- def initialResult = executeQuery(query)
+ def result = executeQuery(query)
1628
1629
then:
1630
- initialResult.toSpecification() == [
+ result.toSpecification() == [
1631
data: [post: [summary: "A summary", text: "The full text"]]
1632
]
1633
+ !(result instanceof IncrementalExecutionResult)
1634
1635
1636
0 commit comments