From 1457a40363c1c1549ec646ede13de15a881e8486 Mon Sep 17 00:00:00 2001 From: Gus Narea Date: Wed, 22 Mar 2023 12:31:27 +0100 Subject: [PATCH] refactor --- src/lib/PrivateKey.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/PrivateKey.spec.ts b/src/lib/PrivateKey.spec.ts index e32ae6b..dfc57ec 100644 --- a/src/lib/PrivateKey.spec.ts +++ b/src/lib/PrivateKey.spec.ts @@ -3,7 +3,7 @@ import { ProviderCrypto } from 'webcrypto-core'; import { HashingAlgorithm } from './algorithms'; import { PrivateKey, RsaPssPrivateKey } from './PrivateKey'; -const PROVIDER: ProviderCrypto = {} as any; +const PROVIDER: ProviderCrypto = Symbol() as any; describe('PrivateKey', () => { const ALGORITHM: KeyAlgorithm = { name: 'RSA-PSS' };