Skip to content

Commit 782e897

Browse files
committed
test: remove forgotten console.trace logs
1 parent 21ec3c8 commit 782e897

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

test/replication.test.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -143,13 +143,11 @@ describe('Replication / Change APIs', function() {
143143

144144
SourceModel.rectifyChange = function(id, cb) {
145145
calls.push('rectifyChange');
146-
console.trace('rectifyChange');
147146
process.nextTick(cb);
148147
};
149148

150149
SourceModel.rectifyAllChanges = function(cb) {
151150
calls.push('rectifyAllChanges');
152-
console.trace('rectifyAllChanges');
153151
process.nextTick(cb);
154152
};
155153

@@ -161,13 +159,11 @@ describe('Replication / Change APIs', function() {
161159

162160
TargetModel.rectifyChange = function(id, cb) {
163161
calls.push('rectifyChange');
164-
console.trace('rectifyChange');
165162
process.nextTick(cb);
166163
};
167164

168165
TargetModel.rectifyAllChanges = function(cb) {
169166
calls.push('rectifyAllChanges');
170-
console.trace('rectifyAllChanges');
171167
process.nextTick(cb);
172168
};
173169

0 commit comments

Comments
 (0)