From 402bc1e519e30ce8e46a46454011c0d564e118e2 Mon Sep 17 00:00:00 2001 From: Ishaan Lahoti <113637618+Quaakee@users.noreply.github.com> Date: Tue, 15 Sep 2026 15:09:05 -0500 Subject: [PATCH] test: bind LocalKVStore fixture setup to declared variables (#529) --- packages/sdk/src/kvstore/__tests/LocalKVStore.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/sdk/src/kvstore/__tests/LocalKVStore.test.ts b/packages/sdk/src/kvstore/__tests/LocalKVStore.test.ts index 3314e2933..8bd494199 100644 --- a/packages/sdk/src/kvstore/__tests/LocalKVStore.test.ts +++ b/packages/sdk/src/kvstore/__tests/LocalKVStore.test.ts @@ -203,7 +203,7 @@ describe('localKVStore', () => { beforeEach(() => { // Get the mock instance that will be created by `new PushDrop()` - pushDropInstance = new (PushDrop as any)() + _pushDropInstance = new (PushDrop as any)() }) it('should create a new encrypted output if none exists', async () => { @@ -594,7 +594,7 @@ describe('localKVStore', () => { beforeEach(() => { // Get the mock instance that will be created by `new PushDrop()` - pushDropInstance = new (PushDrop as any)() + _pushDropInstance = new (PushDrop as any)() }) it('should do nothing and return void if key does not exist', async () => {