Skip to content

Commit

Permalink
Merge pull request #503 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 55559b4 + 7906d16 commit 0ccf1a2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"remark-github": "^7.0.3",
"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
Original file line number Diff line number Diff line change
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 0ccf1a2

Please sign in to comment.