@@ -699,7 +699,7 @@ describe('Bytes access', () => {
699699 expect ( accessor . getBytesWithDefault ( 1 ) ) . toEqual ( simpleByteString ) ;
700700 } ) ;
701701
702- it ( 'decodes value from wire with multiple values being present' , ( ) => {
702+ it ( 'decodes value from wire with multple values being present' , ( ) => {
703703 const accessor = Kernel . fromArrayBuffer (
704704 createArrayBuffer ( 0x0A , 0x01 , 0x00 , 0x0A , 0x01 , 0x01 ) ) ;
705705 expect ( accessor . getBytesWithDefault ( 1 ) ) . toEqual ( simpleByteString ) ;
@@ -801,7 +801,7 @@ describe('Fixed32 access', () => {
801801 expect ( accessor . getFixed32WithDefault ( 1 ) ) . toEqual ( 1 ) ;
802802 } ) ;
803803
804- it ( 'decodes value from wire with multiple values being present' , ( ) => {
804+ it ( 'decodes value from wire with multple values being present' , ( ) => {
805805 const accessor = Kernel . fromArrayBuffer ( createArrayBuffer (
806806 0x0D , 0x01 , 0x00 , 0x80 , 0x00 , 0x0D , 0x02 , 0x00 , 0x00 , 0x00 ) ) ;
807807 expect ( accessor . getFixed32WithDefault ( 1 ) ) . toEqual ( 2 ) ;
@@ -909,7 +909,7 @@ describe('Fixed64 access', () => {
909909 expect ( accessor . getFixed64WithDefault ( 1 ) ) . toEqual ( Int64 . fromInt ( 1 ) ) ;
910910 } ) ;
911911
912- it ( 'decodes value from wire with multiple values being present' , ( ) => {
912+ it ( 'decodes value from wire with multple values being present' , ( ) => {
913913 const accessor = Kernel . fromArrayBuffer ( createArrayBuffer (
914914 0x09 , 0x01 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x09 , 0x02 , 0x00 ,
915915 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 ) ) ;
@@ -1008,7 +1008,7 @@ describe('Float access', () => {
10081008 expect ( accessor . getFloatWithDefault ( 1 ) ) . toEqual ( 1 ) ;
10091009 } ) ;
10101010
1011- it ( 'decodes value from wire with multiple values being present' , ( ) => {
1011+ it ( 'decodes value from wire with multple values being present' , ( ) => {
10121012 const accessor = Kernel . fromArrayBuffer ( createArrayBuffer (
10131013 0x0D , 0x00 , 0x00 , 0x80 , 0x3F , 0x0D , 0x00 , 0x00 , 0x80 , 0xBF ) ) ;
10141014 expect ( accessor . getFloatWithDefault ( 1 ) ) . toEqual ( - 1 ) ;
@@ -1110,7 +1110,7 @@ describe('Int32 access', () => {
11101110 expect ( accessor . getInt32WithDefault ( 1 ) ) . toEqual ( 1 ) ;
11111111 } ) ;
11121112
1113- it ( 'decodes value from wire with multiple values being present' , ( ) => {
1113+ it ( 'decodes value from wire with multple values being present' , ( ) => {
11141114 const accessor =
11151115 Kernel . fromArrayBuffer ( createArrayBuffer ( 0x08 , 0x01 , 0x08 , 0x02 ) ) ;
11161116 expect ( accessor . getInt32WithDefault ( 1 ) ) . toEqual ( 2 ) ;
@@ -1207,7 +1207,7 @@ describe('Int64 access', () => {
12071207 expect ( accessor . getInt64WithDefault ( 1 ) ) . toEqual ( Int64 . fromInt ( 1 ) ) ;
12081208 } ) ;
12091209
1210- it ( 'decodes value from wire with multiple values being present' , ( ) => {
1210+ it ( 'decodes value from wire with multple values being present' , ( ) => {
12111211 const accessor =
12121212 Kernel . fromArrayBuffer ( createArrayBuffer ( 0x08 , 0x01 , 0x08 , 0x02 ) ) ;
12131213 expect ( accessor . getInt64WithDefault ( 1 ) ) . toEqual ( Int64 . fromInt ( 2 ) ) ;
@@ -1306,7 +1306,7 @@ describe('Sfixed32 access', () => {
13061306 expect ( accessor . getSfixed32WithDefault ( 1 ) ) . toEqual ( 1 ) ;
13071307 } ) ;
13081308
1309- it ( 'decodes value from wire with multiple values being present' , ( ) => {
1309+ it ( 'decodes value from wire with multple values being present' , ( ) => {
13101310 const accessor = Kernel . fromArrayBuffer ( createArrayBuffer (
13111311 0x0D , 0x01 , 0x00 , 0x80 , 0x00 , 0x0D , 0x02 , 0x00 , 0x00 , 0x00 ) ) ;
13121312 expect ( accessor . getSfixed32WithDefault ( 1 ) ) . toEqual ( 2 ) ;
@@ -1404,7 +1404,7 @@ describe('Sfixed64 access', () => {
14041404 expect ( accessor . getSfixed64WithDefault ( 1 ) ) . toEqual ( Int64 . fromInt ( 1 ) ) ;
14051405 } ) ;
14061406
1407- it ( 'decodes value from wire with multiple values being present' , ( ) => {
1407+ it ( 'decodes value from wire with multple values being present' , ( ) => {
14081408 const accessor = Kernel . fromArrayBuffer ( createArrayBuffer (
14091409 0x09 , 0x01 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x09 , 0x02 , 0x00 ,
14101410 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 ) ) ;
@@ -1502,7 +1502,7 @@ describe('Sint32 access', () => {
15021502 expect ( accessor . getSint32WithDefault ( 1 ) ) . toEqual ( 1 ) ;
15031503 } ) ;
15041504
1505- it ( 'decodes value from wire with multiple values being present' , ( ) => {
1505+ it ( 'decodes value from wire with multple values being present' , ( ) => {
15061506 const accessor =
15071507 Kernel . fromArrayBuffer ( createArrayBuffer ( 0x08 , 0x03 , 0x08 , 0x02 ) ) ;
15081508 expect ( accessor . getSint32WithDefault ( 1 ) ) . toEqual ( 1 ) ;
@@ -1599,7 +1599,7 @@ describe('SInt64 access', () => {
15991599 expect ( accessor . getSint64WithDefault ( 1 ) ) . toEqual ( Int64 . fromInt ( 1 ) ) ;
16001600 } ) ;
16011601
1602- it ( 'decodes value from wire with multiple values being present' , ( ) => {
1602+ it ( 'decodes value from wire with multple values being present' , ( ) => {
16031603 const accessor =
16041604 Kernel . fromArrayBuffer ( createArrayBuffer ( 0x08 , 0x01 , 0x08 , 0x02 ) ) ;
16051605 expect ( accessor . getSint64WithDefault ( 1 ) ) . toEqual ( Int64 . fromInt ( 1 ) ) ;
@@ -1698,7 +1698,7 @@ describe('String access', () => {
16981698 expect ( accessor . getStringWithDefault ( 1 ) ) . toEqual ( 'a' ) ;
16991699 } ) ;
17001700
1701- it ( 'decodes value from wire with multiple values being present' , ( ) => {
1701+ it ( 'decodes value from wire with multple values being present' , ( ) => {
17021702 const accessor = Kernel . fromArrayBuffer (
17031703 createArrayBuffer ( 0x0A , 0x01 , 0x60 , 0x0A , 0x01 , 0x61 ) ) ;
17041704 expect ( accessor . getStringWithDefault ( 1 ) ) . toEqual ( 'a' ) ;
@@ -1789,7 +1789,7 @@ describe('Uint32 access', () => {
17891789 expect ( accessor . getUint32WithDefault ( 1 ) ) . toEqual ( 1 ) ;
17901790 } ) ;
17911791
1792- it ( 'decodes value from wire with multiple values being present' , ( ) => {
1792+ it ( 'decodes value from wire with multple values being present' , ( ) => {
17931793 const accessor =
17941794 Kernel . fromArrayBuffer ( createArrayBuffer ( 0x08 , 0x01 , 0x08 , 0x02 ) ) ;
17951795 expect ( accessor . getUint32WithDefault ( 1 ) ) . toEqual ( 2 ) ;
@@ -1896,7 +1896,7 @@ describe('Uint64 access', () => {
18961896 expect ( accessor . getUint64WithDefault ( 1 ) ) . toEqual ( Int64 . fromInt ( 1 ) ) ;
18971897 } ) ;
18981898
1899- it ( 'decodes value from wire with multiple values being present' , ( ) => {
1899+ it ( 'decodes value from wire with multple values being present' , ( ) => {
19001900 const accessor =
19011901 Kernel . fromArrayBuffer ( createArrayBuffer ( 0x08 , 0x01 , 0x08 , 0x02 ) ) ;
19021902 expect ( accessor . getUint64WithDefault ( 1 ) ) . toEqual ( Int64 . fromInt ( 2 ) ) ;
@@ -1996,7 +1996,7 @@ describe('Double access', () => {
19961996 } ) ;
19971997
19981998
1999- it ( 'decodes value from wire with multiple values being present' , ( ) => {
1999+ it ( 'decodes value from wire with multple values being present' , ( ) => {
20002000 const accessor = Kernel . fromArrayBuffer ( createArrayBuffer (
20012001 0x09 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0xF0 , 0x3F , 0x09 , 0x00 , 0x00 ,
20022002 0x00 , 0x00 , 0x00 , 0x00 , 0xF0 , 0xBF ) ) ;
0 commit comments