From 504f5939edac697661d636c5be073841670ca1b3 Mon Sep 17 00:00:00 2001 From: Andy Caruso Date: Tue, 22 Mar 2022 08:20:07 -0700 Subject: [PATCH] Correct test constructor Signed-off-by: Andy Caruso --- plugins/auth-node/src/IdentityClient.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/auth-node/src/IdentityClient.test.ts b/plugins/auth-node/src/IdentityClient.test.ts index 3386d4e414..9cdd9a81a6 100644 --- a/plugins/auth-node/src/IdentityClient.test.ts +++ b/plugins/auth-node/src/IdentityClient.test.ts @@ -104,7 +104,7 @@ describe('IdentityClient', () => { afterEach(() => server.resetHandlers()); beforeEach(() => { - client = IdentityClient.create({ discovery, issuer: mockBaseUrl }, 0); + client = IdentityClient.create({ discovery, issuer: mockBaseUrl }); factory = new FakeTokenFactory({ issuer: mockBaseUrl, keyDurationSeconds,