From 7ec791e11a730119563f8a1fcf0bddd2e8a3b7a6 Mon Sep 17 00:00:00 2001 From: Deepak Prabhakara Date: Thu, 30 Nov 2023 12:28:22 +0000 Subject: [PATCH] fixed lint --- test/lib/validateSignature.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lib/validateSignature.spec.ts b/test/lib/validateSignature.spec.ts index 5afa5229..b1a10a2c 100644 --- a/test/lib/validateSignature.spec.ts +++ b/test/lib/validateSignature.spec.ts @@ -170,7 +170,7 @@ describe('validateSignature.ts', function () { it('validate response signature - no embedded cert, use different cert, should fail validate', function () { try { - const value = validateSignature(validResponseSigned_noX509, singlePublicKeyNotUsedToSign, null); + validateSignature(validResponseSigned_noX509, singlePublicKeyNotUsedToSign, null); } catch (error) { expect(error).to.be.ok; }