Skip to content

Commit ffa3919

Browse files
committed
Fix directivesSupport test
1 parent f811265 commit ffa3919

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autoconfigure/src/test/java/com/introproventures/graphql/jpa/query/autoconfigure/GraphQLSchemaAutoConfigurationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ public void enableGraphQLJpaQuerySchema() {
389389
public void directivesSupport() {
390390
assertThat(graphQLSchema.getDirectives())
391391
.extracting(GraphQLDirective::getName)
392-
.containsOnly("include", "skip", "specifiedBy", "deprecated", "oneOf");
392+
.contains("include", "skip", "specifiedBy", "deprecated", "oneOf", "defer");
393393
}
394394

395395
@Test

0 commit comments

Comments
 (0)