Skip to content

Commit 4d25d64

Browse files
committed
Fixed tests.
1 parent aa936f9 commit 4d25d64

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, null)
33-
writer.write(requestMock, responseMock, null)
32+
def writer = new SingleQueryResponseWriter(new ExecutionResultImpl(result, []), graphQLObjectMapperMock)
33+
writer.write(requestMock, responseMock)
3434

3535
where:
3636
result || expectedContentLenght | expectedResponseContent

0 commit comments

Comments
 (0)