From 503c4b7c04b1db6b556479eacf16131b112655c3 Mon Sep 17 00:00:00 2001 From: "greenkeeper[bot]" <23040076+greenkeeper[bot]@users.noreply.github.com> Date: Fri, 24 Apr 2020 22:09:04 +0000 Subject: [PATCH 1/2] chore(package): update tape to version 5.0.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 55ff0d5..666f580 100644 --- a/package.json +++ b/package.json @@ -52,7 +52,7 @@ "jshint": "^2.5.6", "precommit-hook": "^3.0.0", "tap-spec": "^5.0.0", - "tape": "^4.8.0" + "tape": "^5.0.0" }, "pre-commit": [ "lint", From fb8265d1e830d35aed4be92b7bdb264d6afc7c88 Mon Sep 17 00:00:00 2001 From: Julian Simioni Date: Thu, 4 Nov 2021 08:16:14 -0400 Subject: [PATCH 2/2] Use `deepLooseEqual` for comparison --- test/lib/Database.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lib/Database.js b/test/lib/Database.js index da6ee51..e29a882 100644 --- a/test/lib/Database.js +++ b/test/lib/Database.js @@ -30,7 +30,7 @@ module.exports.open = function(test, common) { // open connection db.open('/tmp/db', { test: true }); t.equal( db.db.constructor.name, 'Database' ); - t.deepEqual( db.db, { + t.deepLooseEqual( db.db, { inTransaction: false, open: true, memory: true,