diff --git a/test/helpers/eth-transactions.ts b/test/helpers/eth-transactions.ts index 6f981f35f..b7874c6b9 100644 --- a/test/helpers/eth-transactions.ts +++ b/test/helpers/eth-transactions.ts @@ -1,5 +1,5 @@ import "@moonbeam-network/api-augment"; -import { DevModeContext, expect } from "@moonwall/cli"; +import { expect } from "@moonwall/cli"; import { EventRecord } from "@polkadot/types/interfaces"; import { EvmCoreErrorExitError, diff --git a/test/suites/dev-frontier-template/test-precompiles/test-precompile-batch.ts b/test/suites/dev-frontier-template/test-precompiles/test-precompile-batch.ts index 5ad030388..b3eb1c43d 100644 --- a/test/suites/dev-frontier-template/test-precompiles/test-precompile-batch.ts +++ b/test/suites/dev-frontier-template/test-precompiles/test-precompile-batch.ts @@ -12,7 +12,7 @@ describeSuite({ id: "DF0901", title: "Batch - All functions should consume the same gas", foundationMethods: "dev", - testCases: ({ context, it, log }) => { + testCases: ({ context, it }) => { it({ id: "T01", title: "should consume the same gas", diff --git a/test/suites/dev-frontier-template/test-precompiles/test-precompile-call-permit.ts b/test/suites/dev-frontier-template/test-precompiles/test-precompile-call-permit.ts index d457d3703..02b348507 100644 --- a/test/suites/dev-frontier-template/test-precompiles/test-precompile-call-permit.ts +++ b/test/suites/dev-frontier-template/test-precompiles/test-precompile-call-permit.ts @@ -23,7 +23,7 @@ describeSuite({ id: "DF0902", title: "Precompile - Call Permit - foo", foundationMethods: "dev", - testCases: ({ context, it, log }) => { + testCases: ({ context, it }) => { let callPermitDemoAbi: Abi; let callPermitDemoAddr: `0x${string}`; let callPermitAbi: Abi; diff --git a/test/suites/dev-frontier-template/test-precompiles/test-precompile-erc20.ts b/test/suites/dev-frontier-template/test-precompiles/test-precompile-erc20.ts index 143c5b582..db38f9e89 100644 --- a/test/suites/dev-frontier-template/test-precompiles/test-precompile-erc20.ts +++ b/test/suites/dev-frontier-template/test-precompiles/test-precompile-erc20.ts @@ -17,7 +17,7 @@ describeSuite({ id: "DF0903", title: "Precompiles - ERC20 Native", foundationMethods: "dev", - testCases: ({ context, it, log }) => { + testCases: ({ context, it }) => { let randomAccount: PrivateKeyAccount; beforeEach(async () => {