Skip to content

Commit

Permalink
lint(a3p): lint fix vaults.test.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorge-Lopes committed Nov 1, 2024
1 parent b21767b commit 16a1d81
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion a3p-integration/proposals/z:acceptance/vaults.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,11 @@ test.serial('open new vault', async t => {
const istBalanceAfter = await getISTBalance(USER1ADDR);
const activeVaultsAfter = await agopsVaults(USER1ADDR);

await tryISTBalances(t, scale6(istBalanceAfter), scale6(istBalanceBefore + 5));
await tryISTBalances(
t,
scale6(istBalanceAfter),
scale6(istBalanceBefore + 5),
);

t.is(
activeVaultsAfter.length,
Expand Down

0 comments on commit 16a1d81

Please sign in to comment.