@@ -30,7 +30,7 @@ describe('utilties', function() {
3030 [ undefined , null , 1337 , { } , [ ] ] . forEach ( function ( parameter ) {
3131 assert . throws ( function ( ) { camelCase ( parameter ) ; } ) ;
3232 } ) ;
33- } )
33+ } ) ;
3434 } ) ;
3535
3636 describe ( '`invertObject` helper' , function ( ) {
@@ -40,7 +40,7 @@ describe('utilties', function() {
4040 [ undefined , null , 'foo' , 1337 ] . forEach ( function ( parameter ) {
4141 assert . throws ( function ( ) { invertObject ( parameter ) ; } ) ;
4242 } ) ;
43- } )
43+ } ) ;
4444
4545 it ( 'swaps key with value for object' , function ( ) {
4646 assert . deepEqual (
@@ -67,7 +67,7 @@ describe('utilties', function() {
6767
6868 it ( 'uses override if valid' , function ( ) {
6969 assert . deepEqual (
70- invertObject ( { foo : 'bar' , baz : 'qux' } , function ( key , value ) {
70+ invertObject ( { foo : 'bar' , baz : 'qux' } , function ( key ) {
7171 if ( key === 'foo' ) {
7272 return [ 'key' , 'value' ] ;
7373 }
@@ -78,7 +78,7 @@ describe('utilties', function() {
7878
7979 it ( 'does not use override if invalid' , function ( ) {
8080 assert . deepEqual (
81- invertObject ( { foo : 'bar' , baz : 'qux' } , function ( key , value ) {
81+ invertObject ( { foo : 'bar' , baz : 'qux' } , function ( key ) {
8282 if ( key === 'foo' ) {
8383 return [ 'key' ] ;
8484 } else if ( key === 'baz' ) {
0 commit comments