From c0fba94c5814a1c35fe79caa895007fc153a76a0 Mon Sep 17 00:00:00 2001 From: "greenkeeper[bot]" <23040076+greenkeeper[bot]@users.noreply.github.com> Date: Fri, 12 Jul 2019 10:22:35 +0200 Subject: [PATCH] Upgrade standard devDependency from ^12.0.0 to ^13.0.1 (#341) --- package.json | 2 +- test/self.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 226bc950..964bbb23 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/test/self.js b/test/self.js index 13fd97d5..a2a83d97 100644 --- a/test/self.js +++ b/test/self.js @@ -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') @@ -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')