File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ describe(`byte flag calculator`, () => {
1212 ] . forEach ( el => {
1313 it ( ` - expected true as ${ el . flag } bytes are presented in ${ el . flags } ` , ( ) => {
1414 expect ( calc . hasBytes ( el . flags , el . flag ) ) . toBe ( true ) ;
15- } )
15+ } ) ;
1616 } ) ;
1717
1818 [
@@ -24,7 +24,7 @@ describe(`byte flag calculator`, () => {
2424 ] . forEach ( el => {
2525 it ( ` - expected false as ${ el . flag } bytes aren't presented in ${ el . flags } ` , ( ) => {
2626 expect ( calc . hasBytes ( el . flags , el . flag ) ) . toBe ( false ) ;
27- } )
27+ } ) ;
2828 } ) ;
2929 } ) ;
3030
@@ -38,7 +38,7 @@ describe(`byte flag calculator`, () => {
3838 ] . forEach ( el => {
3939 it ( ` - expected ${ el . expected } by adding bytes ${ el . flag } to ${ el . flags } ` , ( ) => {
4040 expect ( calc . addBytes ( el . flags , el . flag ) ) . toBe ( el . expected ) ;
41- } )
41+ } ) ;
4242 } ) ;
4343 } ) ;
4444
@@ -55,8 +55,8 @@ describe(`byte flag calculator`, () => {
5555 ] . forEach ( el => {
5656 it ( ` - expected ${ el . expected } by removing bytes ${ el . flag } from ${ el . flags } ` , ( ) => {
5757 expect ( calc . removeBytes ( el . flags , el . flag ) ) . toBe ( el . expected ) ;
58- } )
58+ } ) ;
5959 } ) ;
6060 } ) ;
6161 } ) ;
62- } ) ;
62+ } ) ;
You can’t perform that action at this time.
0 commit comments