Skip to content

Commit

Permalink
Fix standard
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphtheninja committed Aug 29, 2018
1 parent 439f20f commit 3158bc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/iterator-test.js
Expand Up @@ -65,7 +65,7 @@ make('iterator is seekable with buffer', function (db, t, done) {
})

make('reverse seek in the middle', function (db, t, done) {
var ite = db.iterator({reverse: true, limit: 1})
var ite = db.iterator({ reverse: true, limit: 1 })
ite.seek('three!')
ite.next(function (err, key, value) {
t.error(err, 'no error')
Expand All @@ -87,7 +87,7 @@ make('iterator invalid seek', function (db, t, done) {
})

make('reverse seek from invalid range', function (db, t, done) {
var ite = db.iterator({reverse: true})
var ite = db.iterator({ reverse: true })
ite.seek('zzz')
ite.next(function (err, key, value) {
t.error(err, 'no error')
Expand Down

0 comments on commit 3158bc2

Please sign in to comment.