Skip to content

Commit

Permalink
Fixed lint
Browse files Browse the repository at this point in the history
  • Loading branch information
davibroc committed Nov 29, 2024
1 parent 04d04a2 commit cfa41a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e/playwright/swap/specs/swap.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ test.beforeAll(
walletPage = new WalletPage(page);

await networkController.addCustomNetwork(Tenderly.Mainnet);
const account_name = await walletPage.importAccount(wallet.privateKey);
expect(account_name).toEqual('Account 2');
const accountName = await walletPage.importAccount(wallet.privateKey);
expect(accountName).toEqual('Account 2');
await walletPage.waitforTokenBalance('1 ETH');
},
);
Expand Down

0 comments on commit cfa41a1

Please sign in to comment.