@@ -110,9 +110,7 @@ describe("decodeUnsignedInt32Stream", () => {
110110
111111 it ( "should decode little-endian uint32 words with PhysicalLevelTechnique.NONE" , ( ) => {
112112 const metadata = createInt32PhysicalNoneMetadata ( 3 ) ;
113- const data = new Uint8Array ( [
114- 0x78 , 0x56 , 0x34 , 0x12 , 0xef , 0xcd , 0xab , 0x90 , 0x01 , 0x00 , 0x00 , 0x00 ,
115- ] ) ;
113+ const data = new Uint8Array ( [ 0x78 , 0x56 , 0x34 , 0x12 , 0xef , 0xcd , 0xab , 0x90 , 0x01 , 0x00 , 0x00 , 0x00 ] ) ;
116114
117115 const result = decodeUnsignedInt32Stream ( data , new IntWrapper ( 0 ) , metadata ) ;
118116
@@ -183,9 +181,7 @@ describe("decodeUnsignedInt32Stream", () => {
183181describe ( "decodeSignedInt32Stream" , ( ) => {
184182 it ( "should decode little-endian zigzag-encoded uint32 words with PhysicalLevelTechnique.NONE" , ( ) => {
185183 const metadata = createInt32PhysicalNoneMetadata ( 3 ) ;
186- const data = new Uint8Array ( [
187- 0x01 , 0x00 , 0x00 , 0x00 , 0x02 , 0x00 , 0x00 , 0x00 , 0x03 , 0x00 , 0x00 , 0x00 ,
188- ] ) ;
184+ const data = new Uint8Array ( [ 0x01 , 0x00 , 0x00 , 0x00 , 0x02 , 0x00 , 0x00 , 0x00 , 0x03 , 0x00 , 0x00 , 0x00 ] ) ;
189185
190186 const result = decodeSignedInt32Stream ( data , new IntWrapper ( 0 ) , metadata ) ;
191187
0 commit comments