Skip to content

Commit

Permalink
Upgrade standard devDependency from ^12.0.0 to ^13.0.1 (#341)
Browse files Browse the repository at this point in the history
  • Loading branch information
greenkeeper[bot] authored and vweevers committed Jul 12, 2019
1 parent 6cfc613 commit c0fba94
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 @@ -25,7 +25,7 @@
"level-community": "^3.0.0",
"nyc": "^14.0.0",
"sinon": "^7.2.4",
"standard": "^12.0.0",
"standard": "^13.0.1",
"tape": "^4.10.0"
},
"hallmark": {
Expand Down
4 changes: 2 additions & 2 deletions test/self.js
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,7 @@ test('test serialization extensibility (batch array put)', function (t) {
})

var test = new Test('foobar')
test.batch([ { type: 'put', key: 'no', value: 'nope' } ], function () {})
test.batch([{ type: 'put', key: 'no', value: 'nope' }], function () {})

t.equal(spy.callCount, 1, 'got _batch() call')
t.equal(spy.getCall(0).args[0][0].key, 'foo', 'got expected key')
Expand Down Expand Up @@ -641,7 +641,7 @@ test('test serialization extensibility (batch array del)', function (t) {
})

var test = new Test('foobar')
test.batch([ { type: 'del', key: 'no' } ], function () {})
test.batch([{ type: 'del', key: 'no' }], function () {})

t.equal(spy.callCount, 1, 'got _batch() call')
t.equal(spy.getCall(0).args[0][0].key, 'foo', 'got expected key')
Expand Down

0 comments on commit c0fba94

Please sign in to comment.