From 7d286e7ebe38c9a2f1f3161581f09410494bb041 Mon Sep 17 00:00:00 2001 From: leibale Date: Thu, 23 Sep 2021 16:33:47 -0400 Subject: [PATCH] fix "createClient with url" test with redis 5 --- lib/client.spec.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/client.spec.ts b/lib/client.spec.ts index 9f600c7918..2cf6ea4964 100644 --- a/lib/client.spec.ts +++ b/lib/client.spec.ts @@ -85,13 +85,13 @@ describe('Client', () => { try { assert.equal( - (await client.clientInfo()).db, - 1 + await client.ping(), + 'PONG' ); } finally { await client.disconnect(); } - }); + }) }); describe('authentication', () => {