Skip to content

Commit b66190e

Browse files
committed
Fixed SingleQueryResponseWriterTest.
1 parent 4d4020d commit b66190e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

graphql-java-servlet/src/test/groovy/graphql/kickstart/servlet/SingleQueryResponseWriterTest.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ class SingleQueryResponseWriterTest extends Specification {
2929
1 * responseMock.getOutputStream().write(expectedResponseContent.getBytes(StandardCharsets.UTF_8))
3030

3131
expect:
32-
def writer = new SingleQueryResponseWriter(new ExecutionResultImpl(result, []), graphQLObjectMapperMock)
33-
writer.write(requestMock, responseMock)
32+
def writer = new SingleQueryResponseWriter(new ExecutionResultImpl(result, []), graphQLObjectMapperMock, null)
33+
writer.write(requestMock, responseMock, null)
3434

3535
where:
3636
result || expectedContentLenght | expectedResponseContent

0 commit comments

Comments
 (0)