@@ -371,7 +371,7 @@ describe('Execute: Handles inputs', () => {
371371 {
372372 message :
373373 'Variable "$input" got invalid value ' +
374- '{"a": "foo","b": "bar","c": null}; ' +
374+ '{a: "foo", b: "bar", c: null}; ' +
375375 'Expected non-nullable type String! not to be null at value.c.' ,
376376 locations : [ { line : 2 , column : 16 } ] ,
377377 } ,
@@ -401,7 +401,7 @@ describe('Execute: Handles inputs', () => {
401401 errors : [
402402 {
403403 message :
404- 'Variable "$input" got invalid value {"a": "foo","b": "bar"}; ' +
404+ 'Variable "$input" got invalid value {a: "foo", b: "bar"}; ' +
405405 'Field value.c of required type String! was not provided.' ,
406406 locations : [ { line : 2 , column : 16 } ] ,
407407 } ,
@@ -421,13 +421,13 @@ describe('Execute: Handles inputs', () => {
421421 errors : [
422422 {
423423 message :
424- 'Variable "$input" got invalid value {"na":{"a": "foo"}}; ' +
424+ 'Variable "$input" got invalid value {na: {a: "foo"}}; ' +
425425 'Field value.na.c of required type String! was not provided.' ,
426426 locations : [ { line : 2 , column : 18 } ] ,
427427 } ,
428428 {
429429 message :
430- 'Variable "$input" got invalid value {"na":{"a": "foo"}}; ' +
430+ 'Variable "$input" got invalid value {na: {a: "foo"}}; ' +
431431 'Field value.nb of required type String! was not provided.' ,
432432 locations : [ { line : 2 , column : 18 } ] ,
433433 } ,
@@ -446,7 +446,7 @@ describe('Execute: Handles inputs', () => {
446446 {
447447 message :
448448 'Variable "$input" got invalid value ' +
449- '{"a": "foo","b": "bar","c": "baz"," extra": "dog"}; ' +
449+ '{a: "foo", b: "bar", c: "baz", extra: "dog"}; ' +
450450 'Field "extra" is not defined by type TestInputObject.' ,
451451 locations : [ { line : 2 , column : 16 } ] ,
452452 } ,
@@ -693,8 +693,8 @@ describe('Execute: Handles inputs', () => {
693693 errors : [
694694 {
695695 message :
696- 'Variable "$value" got invalid value [1,2, 3]; Expected type ' +
697- 'String; String cannot represent an array value: [1,2, 3]' ,
696+ 'Variable "$value" got invalid value [1, 2, 3]; Expected type ' +
697+ 'String; String cannot represent an array value: [1, 2, 3]' ,
698698 locations : [ { line : 2 , column : 16 } ] ,
699699 } ,
700700 ] ,
@@ -841,7 +841,7 @@ describe('Execute: Handles inputs', () => {
841841 errors : [
842842 {
843843 message :
844- 'Variable "$input" got invalid value ["A",null,"B"]; ' +
844+ 'Variable "$input" got invalid value ["A", null, "B"]; ' +
845845 'Expected non-nullable type String! not to be null at value[1].' ,
846846 locations : [ { line : 2 , column : 16 } ] ,
847847 } ,
@@ -891,7 +891,7 @@ describe('Execute: Handles inputs', () => {
891891 errors : [
892892 {
893893 message :
894- 'Variable "$input" got invalid value ["A",null,"B"]; ' +
894+ 'Variable "$input" got invalid value ["A", null, "B"]; ' +
895895 'Expected non-nullable type String! not to be null at value[1].' ,
896896 locations : [ { line : 2 , column : 16 } ] ,
897897 } ,
0 commit comments