@@ -158,9 +158,7 @@ describe("decodeUnsignedInt32Stream", () => {
158158
159159 it ( "should decode little-endian uint32 words with PhysicalLevelTechnique.NONE" , ( ) => {
160160 const metadata = createInt32PhysicalNoneMetadata ( 3 ) ;
161- const data = new Uint8Array ( [
162- 0x78 , 0x56 , 0x34 , 0x12 , 0xef , 0xcd , 0xab , 0x90 , 0x01 , 0x00 , 0x00 , 0x00 ,
163- ] ) ;
161+ const data = new Uint8Array ( [ 0x78 , 0x56 , 0x34 , 0x12 , 0xef , 0xcd , 0xab , 0x90 , 0x01 , 0x00 , 0x00 , 0x00 ] ) ;
164162
165163 const result = decodeUnsignedInt32Stream ( data , new IntWrapper ( 0 ) , metadata ) ;
166164
@@ -218,9 +216,7 @@ describe("decodeUnsignedInt32Stream", () => {
218216describe ( "decodeSignedInt32Stream" , ( ) => {
219217 it ( "should decode little-endian zigzag-encoded uint32 words with PhysicalLevelTechnique.NONE" , ( ) => {
220218 const metadata = createInt32PhysicalNoneMetadata ( 3 ) ;
221- const data = new Uint8Array ( [
222- 0x01 , 0x00 , 0x00 , 0x00 , 0x02 , 0x00 , 0x00 , 0x00 , 0x03 , 0x00 , 0x00 , 0x00 ,
223- ] ) ;
219+ const data = new Uint8Array ( [ 0x01 , 0x00 , 0x00 , 0x00 , 0x02 , 0x00 , 0x00 , 0x00 , 0x03 , 0x00 , 0x00 , 0x00 ] ) ;
224220
225221 const result = decodeSignedInt32Stream ( data , new IntWrapper ( 0 ) , metadata ) ;
226222
0 commit comments