@@ -99,7 +99,7 @@ describe('Type System: Specified scalar types', () => {
99
99
'Int cannot represent non-integer value: [1]' ,
100
100
) ;
101
101
expect ( ( ) => parseLiteral ( '{ value: 1 }' ) ) . to . throw (
102
- 'Int cannot represent non-integer value: {value: 1}' ,
102
+ 'Int cannot represent non-integer value: { value: 1 }' ,
103
103
) ;
104
104
expect ( ( ) => parseLiteral ( 'ENUM_VALUE' ) ) . to . throw (
105
105
'Int cannot represent non-integer value: ENUM_VALUE' ,
@@ -259,7 +259,7 @@ describe('Type System: Specified scalar types', () => {
259
259
'Float cannot represent non numeric value: [0.1]' ,
260
260
) ;
261
261
expect ( ( ) => parseLiteral ( '{ value: 0.1 }' ) ) . to . throw (
262
- 'Float cannot represent non numeric value: {value: 0.1}' ,
262
+ 'Float cannot represent non numeric value: { value: 0.1 }' ,
263
263
) ;
264
264
expect ( ( ) => parseLiteral ( 'ENUM_VALUE' ) ) . to . throw (
265
265
'Float cannot represent non numeric value: ENUM_VALUE' ,
@@ -366,7 +366,7 @@ describe('Type System: Specified scalar types', () => {
366
366
'String cannot represent a non string value: ["foo"]' ,
367
367
) ;
368
368
expect ( ( ) => parseLiteral ( '{ value: "foo" }' ) ) . to . throw (
369
- 'String cannot represent a non string value: {value: "foo"}' ,
369
+ 'String cannot represent a non string value: { value: "foo" }' ,
370
370
) ;
371
371
expect ( ( ) => parseLiteral ( 'ENUM_VALUE' ) ) . to . throw (
372
372
'String cannot represent a non string value: ENUM_VALUE' ,
@@ -484,7 +484,7 @@ describe('Type System: Specified scalar types', () => {
484
484
'Boolean cannot represent a non boolean value: [false]' ,
485
485
) ;
486
486
expect ( ( ) => parseLiteral ( '{ value: false }' ) ) . to . throw (
487
- 'Boolean cannot represent a non boolean value: {value: false}' ,
487
+ 'Boolean cannot represent a non boolean value: { value: false }' ,
488
488
) ;
489
489
expect ( ( ) => parseLiteral ( 'ENUM_VALUE' ) ) . to . throw (
490
490
'Boolean cannot represent a non boolean value: ENUM_VALUE' ,
@@ -599,7 +599,7 @@ describe('Type System: Specified scalar types', () => {
599
599
'ID cannot represent a non-string and non-integer value: ["1"]' ,
600
600
) ;
601
601
expect ( ( ) => parseLiteral ( '{ value: "1" }' ) ) . to . throw (
602
- 'ID cannot represent a non-string and non-integer value: {value: "1"}' ,
602
+ 'ID cannot represent a non-string and non-integer value: { value: "1" }' ,
603
603
) ;
604
604
expect ( ( ) => parseLiteral ( 'ENUM_VALUE' ) ) . to . throw (
605
605
'ID cannot represent a non-string and non-integer value: ENUM_VALUE' ,
0 commit comments