@@ -35,7 +35,7 @@ describe('Chunker', function() {
35
35
chunker . flush ( ) ;
36
36
37
37
// 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' ) ;
39
39
} ) ;
40
40
it ( 'should chunk blobs larger than the output buffer' , function ( ) {
41
41
// Given
@@ -47,7 +47,7 @@ describe('Chunker', function() {
47
47
chunker . flush ( ) ;
48
48
49
49
// 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' ) ;
51
51
} ) ;
52
52
it ( 'should include message boundaries' , function ( ) {
53
53
// Given
@@ -61,7 +61,7 @@ describe('Chunker', function() {
61
61
chunker . flush ( ) ;
62
62
63
63
// 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' ) ;
65
65
} ) ;
66
66
} ) ;
67
67
@@ -83,7 +83,7 @@ describe('Dechunker', function() {
83
83
84
84
// Then
85
85
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' ) ;
87
87
} ) ;
88
88
89
89
it ( 'should handle message split at any point' , function ( ) {
@@ -117,7 +117,7 @@ describe('Dechunker', function() {
117
117
118
118
// Then, the output should be correct
119
119
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' ) ;
121
121
} ;
122
122
} ) ;
123
123
} ) ;
0 commit comments