Skip to content

Commit 3dc0ddb

Browse files
committed
tweak tests
1 parent 0b72e70 commit 3dc0ddb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/utilities/__tests__/buildClientSchema-test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -736,7 +736,7 @@ describe('Type System: build schema from introspection', () => {
736736
foo: {
737737
type: new GraphQLList(new GraphQLList(new GraphQLList(
738738
new GraphQLList(new GraphQLList(new GraphQLList(
739-
new GraphQLList(new GraphQLNonNull(GraphQLString))
739+
new GraphQLList(new GraphQLList(GraphQLString))
740740
))))))
741741
}
742742
}
@@ -755,8 +755,8 @@ describe('Type System: build schema from introspection', () => {
755755
name: 'Query',
756756
fields: {
757757
foo: {
758-
type: new GraphQLList(new GraphQLList(new GraphQLList(
759-
new GraphQLList(new GraphQLList(new GraphQLList(
758+
type: new GraphQLList(new GraphQLNonNull(new GraphQLList(
759+
new GraphQLNonNull(new GraphQLList(new GraphQLNonNull(
760760
new GraphQLList(new GraphQLNonNull(GraphQLString))
761761
))))))
762762
}

0 commit comments

Comments
 (0)