@@ -99,7 +99,7 @@ describe('Type System: Specified scalar types', () => {
9999 'Int cannot represent non-integer value: [1]' ,
100100 ) ;
101101 expect ( ( ) => parseLiteral ( '{ value: 1 }' ) ) . to . throw (
102- 'Int cannot represent non-integer value: {value: 1}' ,
102+ 'Int cannot represent non-integer value: { value: 1 }' ,
103103 ) ;
104104 expect ( ( ) => parseLiteral ( 'ENUM_VALUE' ) ) . to . throw (
105105 'Int cannot represent non-integer value: ENUM_VALUE' ,
@@ -259,7 +259,7 @@ describe('Type System: Specified scalar types', () => {
259259 'Float cannot represent non numeric value: [0.1]' ,
260260 ) ;
261261 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 }' ,
263263 ) ;
264264 expect ( ( ) => parseLiteral ( 'ENUM_VALUE' ) ) . to . throw (
265265 'Float cannot represent non numeric value: ENUM_VALUE' ,
@@ -366,7 +366,7 @@ describe('Type System: Specified scalar types', () => {
366366 'String cannot represent a non string value: ["foo"]' ,
367367 ) ;
368368 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" }' ,
370370 ) ;
371371 expect ( ( ) => parseLiteral ( 'ENUM_VALUE' ) ) . to . throw (
372372 'String cannot represent a non string value: ENUM_VALUE' ,
@@ -484,7 +484,7 @@ describe('Type System: Specified scalar types', () => {
484484 'Boolean cannot represent a non boolean value: [false]' ,
485485 ) ;
486486 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 }' ,
488488 ) ;
489489 expect ( ( ) => parseLiteral ( 'ENUM_VALUE' ) ) . to . throw (
490490 'Boolean cannot represent a non boolean value: ENUM_VALUE' ,
@@ -599,7 +599,7 @@ describe('Type System: Specified scalar types', () => {
599599 'ID cannot represent a non-string and non-integer value: ["1"]' ,
600600 ) ;
601601 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" }' ,
603603 ) ;
604604 expect ( ( ) => parseLiteral ( 'ENUM_VALUE' ) ) . to . throw (
605605 'ID cannot represent a non-string and non-integer value: ENUM_VALUE' ,
0 commit comments