Skip to content

Commit

Permalink
fix wrong type
Browse files Browse the repository at this point in the history
  • Loading branch information
canonbrother committed Nov 4, 2024
1 parent 2488228 commit 5846c36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/whale-api/src/module.api/__defid__/prices.defid.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ it('should list', async () => {
sort: expect.any(String),
aggregated: {
// amount: '2.30000000',
amount: expect.any(Number), // 2.33333333
amount: expect.any(String), // 2.33333333
weightage: 3,
oracles: {
active: 2,
Expand All @@ -165,7 +165,7 @@ it('should get ticker', async () => {
},
aggregated: {
// amount: '1.30000000',
amount: expect.any(Number), // 1.33333333
amount: expect.any(String), // 1.33333333
weightage: 3,
oracles: {
active: 2,
Expand Down

0 comments on commit 5846c36

Please sign in to comment.