@@ -35,7 +35,7 @@ describe('Chunker', function() {
3535 chunker . flush ( ) ;
3636
3737 // Then
38- expect ( ch . toHex ( ) ) . toBe ( " 00 08 00 00 00 01 00 00 00 02 " ) ;
38+ expect ( ch . toHex ( ) ) . toBe ( ' 00 08 00 00 00 01 00 00 00 02' ) ;
3939 } ) ;
4040 it ( 'should chunk blobs larger than the output buffer' , function ( ) {
4141 // Given
@@ -47,7 +47,7 @@ describe('Chunker', function() {
4747 chunker . flush ( ) ;
4848
4949 // Then
50- expect ( ch . toHex ( ) ) . toBe ( " 00 02 01 02 00 02 03 04 00 02 05 06 " ) ;
50+ expect ( ch . toHex ( ) ) . toBe ( ' 00 02 01 02 00 02 03 04 00 02 05 06' ) ;
5151 } ) ;
5252 it ( 'should include message boundaries' , function ( ) {
5353 // Given
@@ -61,7 +61,7 @@ describe('Chunker', function() {
6161 chunker . flush ( ) ;
6262
6363 // Then
64- expect ( ch . toHex ( ) ) . toBe ( " 00 04 00 00 00 01 00 00 00 04 00 00 00 02 " ) ;
64+ expect ( ch . toHex ( ) ) . toBe ( ' 00 04 00 00 00 01 00 00 00 04 00 00 00 02' ) ;
6565 } ) ;
6666} ) ;
6767
@@ -83,7 +83,7 @@ describe('Dechunker', function() {
8383
8484 // Then
8585 expect ( messages . length ) . toBe ( 1 ) ;
86- expect ( messages [ 0 ] . toHex ( ) ) . toBe ( " 00 01 00 02 00 03 " ) ;
86+ expect ( messages [ 0 ] . toHex ( ) ) . toBe ( ' 00 01 00 02 00 03' ) ;
8787 } ) ;
8888
8989 it ( 'should handle message split at any point' , function ( ) {
@@ -117,7 +117,7 @@ describe('Dechunker', function() {
117117
118118 // Then, the output should be correct
119119 expect ( messages . length ) . toBe ( 1 ) ;
120- expect ( messages [ 0 ] . toHex ( ) ) . toBe ( " 01 00 02 00 00 00 03 04 00 00 00 05 " ) ;
120+ expect ( messages [ 0 ] . toHex ( ) ) . toBe ( ' 01 00 02 00 00 00 03 04 00 00 00 05' ) ;
121121 } ;
122122 } ) ;
123123} ) ;
0 commit comments