Skip to content

Commit ccf18dc

Browse files
committedMar 19, 2018
style: fix lint
1 parent 4d47235 commit ccf18dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎test/model.findOneAndUpdate.test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1944,7 +1944,7 @@ describe('model: findOneAndUpdate:', function() {
19441944
});
19451945

19461946
// Should not throw
1947-
const { highlights } = yield Model.findByIdAndUpdate('1', {
1947+
const res = yield Model.findByIdAndUpdate('1', {
19481948
$pull: {
19491949
highlights: {
19501950
_id: {
@@ -1954,7 +1954,7 @@ describe('model: findOneAndUpdate:', function() {
19541954
}
19551955
}, { runValidators: true, new: true });
19561956

1957-
assert.equal(highlights.length, 0);
1957+
assert.equal(res.highlights.length, 0);
19581958
});
19591959
});
19601960

0 commit comments

Comments
 (0)