Skip to content

Commit

Permalink
Merge pull request #75 from Level/greenkeeper/standard-12.0.0
Browse files Browse the repository at this point in the history
Update standard to the latest version 馃殌
  • Loading branch information
ralphtheninja committed Aug 29, 2018
2 parents ed512eb + 3158bc2 commit c8f6502
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -35,7 +35,7 @@
"readfiletree": "~0.0.1",
"rimraf": "^2.6.1",
"slump": "~2.0.0",
"standard": "^11.0.1",
"standard": "^12.0.0",
"tape": "^4.5.1",
"uuid": "^3.2.1",
"verify-travis-appveyor": "^3.0.0"
Expand Down
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 c8f6502

Please sign in to comment.