test: remove forgotten console.trace logs

This commit is contained in:
Miroslav Bajtoš 2016-02-05 12:39:47 +01:00
parent 21ec3c8899
commit 782e89758e
1 changed files with 0 additions and 4 deletions

View File

@ -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);
};