Skip to content

Commit

Permalink
ci: update version assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
gabririgo committed Nov 10, 2023
1 parent f6beeb8 commit 0bb17d3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/core/RigoblockPool.Basetoken.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ describe("BaseTokenProxy", async () => {
const { pool } = await setupTests()
const authority = await deployments.get("Authority")
expect(await pool.authority()).to.be.eq(authority.address)
expect(await pool.VERSION()).to.be.eq('HF 3.1.1')
// TODO: we should have an assertion that the version is different if implementation has changed
// so we are prompted to change the version in the deployment constants.
expect(await pool.VERSION()).to.be.eq('HF 3.1.2')
})
})

Expand Down

0 comments on commit 0bb17d3

Please sign in to comment.