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 bf1d385 commit 0169131Copy full SHA for 0169131
.travis.yml
@@ -1,7 +1,7 @@
1
language: java
2
dist: trusty # https://stackoverflow.com/questions/38912714/travis-failing-junit-tests-for-spring
3
jdk:
4
- - openjdk8
+ - openjdk11
5
before_install:
6
- chmod +x travis-build.sh
7
script:
graphql-webclient/src/test/java/graphql/kickstart/spring/webclient/boot/GraphQLWebClientTest.java
@@ -83,6 +83,7 @@ void noResponseSucceeds() {
83
void listSucceeds() {
84
Flux<Simple> response = graphqlClient.flux("query-list.graphql", Simple.class);
85
List<Simple> list = response.collectList().block();
86
+ assertNotNull(list);
87
assertEquals(1, list.size());
88
}
89
0 commit comments