From deca5e6715f638aad4cc6c2844b48c669b4e78de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Fri, 27 Mar 2026 12:22:06 -0400 Subject: [PATCH] fix: redis/psql --- test/database/keys.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/database/keys.js b/test/database/keys.js index 84a3a7d495..ead0a3ba86 100644 --- a/test/database/keys.js +++ b/test/database/keys.js @@ -47,7 +47,7 @@ describe('Key methods', () => { it('should return 0 if value of key is 0', async () => { await db.set('zeroKey', 0); const value = await db.mget(['zeroKey']); - assert.strictEqual(value[0], 0); + assert.strictEqual(String(value[0]), '0'); }); it('should return true if key exist', (done) => {