Skip to content

Commit

Permalink
Referencing correct vault names in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dimpar committed Dec 7, 2023
1 parent 1c85545 commit 2bbf761
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/test/AcreRouter.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@ describe("AcreRouter", () => {
expect(isVault1Approved).to.equal(true)

expect(await acreRouter.vaults(1)).to.equal(vault2)
const isVault2Approved = await acreRouter.vaultsInfo(vault1)
const isVault2Approved = await acreRouter.vaultsInfo(vault2)
expect(isVault2Approved).to.equal(true)

expect(await acreRouter.vaults(2)).to.equal(vault3)
const isVault3Approved = await acreRouter.vaultsInfo(vault1)
const isVault3Approved = await acreRouter.vaultsInfo(vault3)
expect(isVault3Approved).to.equal(true)
})

Expand Down

0 comments on commit 2bbf761

Please sign in to comment.