@@ -29,7 +29,7 @@ describe('hash', function () {
2929 } ) ;
3030
3131 it ( 'handles Array instances' , function ( ) {
32- expectHash ( hashify ( [ 'a string' ] ) , '["a string",]' ) ;
32+ expectHash ( hashify ( [ 'a string' ] ) , '["a string",]' ) ;
3333 } ) ;
3434
3535 it ( 'handles empty Array instances' , function ( ) {
@@ -45,13 +45,13 @@ describe('hash', function () {
4545 } ) ;
4646
4747 it ( 'handles nested Object and Array instances' , function ( ) {
48- expectHash ( hashify ( { foo : 123.456 , 'a key' : 'a value' , obj : { arr : [ { def : 'ghi' } ] } } ) , '{"a key":"a value","foo":123.456,"obj":{"arr":[{"def":"ghi",},],},}' ) ;
48+ expectHash ( hashify ( { foo : 123.456 , 'a key' : 'a value' , obj : { arr : [ { def : 'ghi' } ] } } ) , '{"a key":"a value","foo":123.456,"obj":{"arr":[{"def":"ghi",},],},}' ) ;
4949 } ) ;
5050 } ) ;
5151
5252 describe ( 'hashArray' , function ( ) {
5353 it ( 'handles Array instances' , function ( ) {
54- expectHash ( hashArray ( [ 'a string' ] ) , '["a string",]' ) ;
54+ expectHash ( hashArray ( [ 'a string' ] ) , '["a string",]' ) ;
5555 } ) ;
5656
5757 it ( 'handles empty Array instances' , function ( ) {
@@ -69,7 +69,7 @@ describe('hash', function () {
6969 } ) ;
7070
7171 it ( 'handles nested Object and Array instances' , function ( ) {
72- expectHash ( hashObject ( { foo : 123.456 , 'a key' : 'a value' , obj : { arr : [ { def : 'ghi' } ] } } ) , '{"a key":"a value","foo":123.456,"obj":{"arr":[{"def":"ghi",},],},}' ) ;
72+ expectHash ( hashObject ( { foo : 123.456 , 'a key' : 'a value' , obj : { arr : [ { def : 'ghi' } ] } } ) , '{"a key":"a value","foo":123.456,"obj":{"arr":[{"def":"ghi",},],},}' ) ;
7373 } ) ;
7474 } ) ;
7575
0 commit comments