Skip to content

Commit 9477498

Browse files
committed
fix: unused import and type errors
1 parent ba10eb0 commit 9477498

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

packages/plugin-evm/src/tests/swap.test.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
import { describe, it, expect, beforeEach, vi, afterEach } from "vitest";
22
import { generatePrivateKey, privateKeyToAccount } from "viem/accounts";
3-
import { Account, Chain, Hex } from "viem";
3+
import { Account, Chain } from "viem";
44

5-
import { TransferAction } from "../actions/transfer";
65
import { WalletProvider } from "../providers/wallet";
7-
import { SwapAction, swapAction } from '../actions/swap';
6+
import { SwapAction } from "../actions/swap";
87

98
// Mock the ICacheManager
109
const mockCacheManager = {
@@ -36,7 +35,9 @@ describe("Swap Action", () => {
3635
});
3736
});
3837
describe("Swap", () => {
38+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
3939
let ta: SwapAction;
40+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
4041
let receiver: Account;
4142

4243
beforeEach(() => {

0 commit comments

Comments
 (0)