Skip to content
This repository has been archived by the owner on Dec 1, 2024. It is now read-only.

Commit

Permalink
Fix batch compression test to actually compress (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
vweevers authored Aug 11, 2019
1 parent 5ff6fac commit 056746f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/compression-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ test('compression', function (t) {
db.batch(
Array.apply(null, Array(multiples)).map(function (e, i) {
return { type: 'put', key: i, value: compressableData }
}), cycle.bind(null, db, false, t, delayed.delayed(verify.bind(null, db.location, false, t), 0.01))
}), cycle.bind(null, db, true, t, delayed.delayed(verify.bind(null, db.location, true, t), 0.01))
)
})
})
Expand Down

0 comments on commit 056746f

Please sign in to comment.