1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-09 00:22:08 +03:00

fix "createClient with url" test with redis 5

This commit is contained in:
leibale
2021-09-23 16:33:47 -04:00
parent 5be5474f18
commit 7d286e7ebe

View File

@@ -85,13 +85,13 @@ describe('Client', () => {
try { try {
assert.equal( assert.equal(
(await client.clientInfo()).db, await client.ping(),
1 'PONG'
); );
} finally { } finally {
await client.disconnect(); await client.disconnect();
} }
}); })
}); });
describe('authentication', () => { describe('authentication', () => {