Skip to content

Commit

Permalink
fix: deposit amount test (#556)
Browse files Browse the repository at this point in the history
  • Loading branch information
arty-name authored Jun 15, 2022
1 parent 622bdce commit 2c5b9d7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/core/src/__integrationtests__/Attestation.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ beforeAll(async () => {

it('fetches the correct deposit amount', async () => {
const depositAmount = await Attestation.queryDepositAmount()
expect(depositAmount.toString()).toMatchInlineSnapshot(`"120950000000000"`)
expect(['120950000000000', '120900000000000']).toContain(
depositAmount.toString()
)
})

describe('handling attestations that do not exist', () => {
Expand Down

0 comments on commit 2c5b9d7

Please sign in to comment.