@@ -371,7 +371,7 @@ describe('Execute: Handles inputs', () => {
371
371
{
372
372
message :
373
373
'Variable "$input" got invalid value ' +
374
- '{a: "foo", b: "bar", c: null}; ' +
374
+ '{ a: "foo", b: "bar", c: null }; ' +
375
375
'Expected non-nullable type String! not to be null at value.c.' ,
376
376
locations : [ { line : 2 , column : 16 } ] ,
377
377
} ,
@@ -401,7 +401,7 @@ describe('Execute: Handles inputs', () => {
401
401
errors : [
402
402
{
403
403
message :
404
- 'Variable "$input" got invalid value {a: "foo", b: "bar"}; ' +
404
+ 'Variable "$input" got invalid value { a: "foo", b: "bar" }; ' +
405
405
'Field value.c of required type String! was not provided.' ,
406
406
locations : [ { line : 2 , column : 16 } ] ,
407
407
} ,
@@ -421,13 +421,13 @@ describe('Execute: Handles inputs', () => {
421
421
errors : [
422
422
{
423
423
message :
424
- 'Variable "$input" got invalid value {na: {a: "foo"} }; ' +
424
+ 'Variable "$input" got invalid value { na: { a: "foo" } }; ' +
425
425
'Field value.na.c of required type String! was not provided.' ,
426
426
locations : [ { line : 2 , column : 18 } ] ,
427
427
} ,
428
428
{
429
429
message :
430
- 'Variable "$input" got invalid value {na: {a: "foo"} }; ' +
430
+ 'Variable "$input" got invalid value { na: { a: "foo" } }; ' +
431
431
'Field value.nb of required type String! was not provided.' ,
432
432
locations : [ { line : 2 , column : 18 } ] ,
433
433
} ,
@@ -446,7 +446,7 @@ describe('Execute: Handles inputs', () => {
446
446
{
447
447
message :
448
448
'Variable "$input" got invalid value ' +
449
- '{a: "foo", b: "bar", c: "baz", extra: "dog"}; ' +
449
+ '{ a: "foo", b: "bar", c: "baz", extra: "dog" }; ' +
450
450
'Field "extra" is not defined by type TestInputObject.' ,
451
451
locations : [ { line : 2 , column : 16 } ] ,
452
452
} ,
0 commit comments