diff --git a/test/common.js b/test/common.js index d2e09b04..be97c61f 100644 --- a/test/common.js +++ b/test/common.js @@ -3543,9 +3543,9 @@ describe('Gun', function(){ var gunB = Gun( { file : "B.json" }); var gunC = Gun( { file : "C.json" }); - gunA.get( "some path A" ).map( (v,f)=>{ console.log( "event on A: ", f, v ) } ); - gunB.get( "some path B" ).map( (v,f)=>{ console.log( "event on B: ", f, v ) } ); - gunC.get( "some path C" ).map( (v,f)=>{ console.log( "event on C: ", f, v ) } ); + gunA.get( "some path A" ).map(function(v,f){ console.log( "event on A: ", f, v ) } ); + gunB.get( "some path B" ).map(function(v,f){ console.log( "event on B: ", f, v ) } ); + gunC.get( "some path C" ).map(function(v,f){ console.log( "event on C: ", f, v ) } ); gunA.get( "some path A" ).put( { simple:"message" } ); gunB.get( "some path B" ).put( { simple:"message" } );