Skip to content

Commit

Permalink
test: Update to pass CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
johngrantuk committed Oct 25, 2024
1 parent 1a85f89 commit 2807485
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/entities/swaps/v3/swapV3.integration.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -958,11 +958,11 @@ describe('SwapV3', () => {
USDT.decimals,
);
expect(expected.swapKind).to.eq(SwapKind.GivenIn);
expect(expected.pathAmounts).to.deep.eq([99910225n]);
expect(expected.pathAmounts).to.deep.eq([99910226n]);
expect(expected.expectedAmountOut.token).to.deep.eq(
usdtToken,
);
expect(expected.expectedAmountOut.amount).to.eq(99910225n);
expect(expected.expectedAmountOut.amount).to.eq(99910226n);
});
test('GivenOut', async () => {
const swap = new Swap({
Expand All @@ -987,11 +987,11 @@ describe('SwapV3', () => {
USDC.decimals,
);
expect(expected.swapKind).to.eq(SwapKind.GivenOut);
expect(expected.pathAmounts).to.deep.eq([100089854n]);
expect(expected.pathAmounts).to.deep.eq([100089856n]);
expect(expected.expectedAmountIn.token).to.deep.eq(
usdcToken,
);
expect(expected.expectedAmountIn.amount).to.eq(100089854n);
expect(expected.expectedAmountIn.amount).to.eq(100089856n);
});
});
describe('swap should be executed correctly', () => {
Expand Down

0 comments on commit 2807485

Please sign in to comment.