From 9e5b522b82bc709571762c64b87d4384ab74b5e7 Mon Sep 17 00:00:00 2001 From: CJ42 Date: Mon, 28 Aug 2023 16:46:00 +0100 Subject: [PATCH] chore: fix eslint warnings --- .../LSP6/Interactions/PermissionCall.test.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tests/LSP20CallVerification/LSP6/Interactions/PermissionCall.test.ts b/tests/LSP20CallVerification/LSP6/Interactions/PermissionCall.test.ts index e5f275068..1287fc62a 100644 --- a/tests/LSP20CallVerification/LSP6/Interactions/PermissionCall.test.ts +++ b/tests/LSP20CallVerification/LSP6/Interactions/PermissionCall.test.ts @@ -482,16 +482,9 @@ export const shouldBehaveLikePermissionCall = ( }); describe('`execute(...)` edge cases', async () => { - let targetContract: TargetContract; - let addressWithNoPermissions: SignerWithAddress; - before(async () => { context = await buildContext(); - addressWithNoPermissions = context.accounts[1]; - - targetContract = await new TargetContract__factory(context.accounts[0]).deploy(); - const permissionKeys = [ ERC725YDataKeys.LSP6['AddressPermissions:Permissions'] + context.owner.address.substring(2), ];