Skip to content

Commit

Permalink
Eliminate noisy type error
Browse files Browse the repository at this point in the history
  • Loading branch information
af-afk committed Jun 8, 2024
1 parent fe35c22 commit d25ad6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/__tests__/01_lib_math/003_price_to_tick.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1016,7 +1016,7 @@ describe("Liquidity math", () => {
[1301091893697408960609149657797796681096301696380n,884947]
];
for (const [ratio, result] of list) {
expect(getTickAtSqrtRatio(ratio)).toEqual(result);
expect(getTickAtSqrtRatio(BigInt(ratio))).toEqual(result);
}
});
});

0 comments on commit d25ad6f

Please sign in to comment.