From 782e89758e8583b862f7428eac3bd5ebcf8e6ec1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Bajto=C5=A1?= Date: Fri, 5 Feb 2016 12:39:47 +0100 Subject: [PATCH] test: remove forgotten console.trace logs --- test/replication.test.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/replication.test.js b/test/replication.test.js index 1a384038..ecdffbf8 100644 --- a/test/replication.test.js +++ b/test/replication.test.js @@ -143,13 +143,11 @@ describe('Replication / Change APIs', function() { SourceModel.rectifyChange = function(id, cb) { calls.push('rectifyChange'); - console.trace('rectifyChange'); process.nextTick(cb); }; SourceModel.rectifyAllChanges = function(cb) { calls.push('rectifyAllChanges'); - console.trace('rectifyAllChanges'); process.nextTick(cb); }; @@ -161,13 +159,11 @@ describe('Replication / Change APIs', function() { TargetModel.rectifyChange = function(id, cb) { calls.push('rectifyChange'); - console.trace('rectifyChange'); process.nextTick(cb); }; TargetModel.rectifyAllChanges = function(cb) { calls.push('rectifyAllChanges'); - console.trace('rectifyAllChanges'); process.nextTick(cb); };