Skip to content

Commit

Permalink
Fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nohaapav committed Sep 22, 2023
1 parent 5c817b9 commit 54149c0
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions packages/sdk/test/api/router.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,24 @@ describe('Router with mocked XYK pool service', () => {
expect(result).toStrictEqual([
[
{
poolId: 'bXi1mHNp4jSRUNXuX3sY1fjCF9Um2EezkpzkFmQuLHaChdPM3',
poolAddress: 'bXi1mHNp4jSRUNXuX3sY1fjCF9Um2EezkpzkFmQuLHaChdPM3',
poolId: undefined,
pool: PoolType.XYK,
assetIn: '1',
assetOut: '2',
},
],
[
{
poolId: 'bXn6KCrv8k2JV7B2c5jzLttBDqL4BurPCTcLa3NQk5SWDVXCJ',
poolAddress: 'bXn6KCrv8k2JV7B2c5jzLttBDqL4BurPCTcLa3NQk5SWDVXCJ',
poolId: undefined,
pool: PoolType.XYK,
assetIn: '1',
assetOut: '0',
},
{
poolId: 'bXjT2D2cuxUuP2JzddMxYusg4cKo3wENje5Xdk3jbNwtRvStq',
poolAddress: 'bXjT2D2cuxUuP2JzddMxYusg4cKo3wENje5Xdk3jbNwtRvStq',
poolId: undefined,
pool: PoolType.XYK,
assetIn: '0',
assetOut: '2',
Expand Down

0 comments on commit 54149c0

Please sign in to comment.