Commit 7037e10c authored by Quentin Hamitouche's avatar Quentin Hamitouche

Fix broken tests

parent 414ba2aa
...@@ -27,7 +27,7 @@ describe("Contrat Voting", function () { ...@@ -27,7 +27,7 @@ describe("Contrat Voting", function () {
it("ne devrait pas permettre à un non-propriétaire d'enregistrer un électeur", async function () { it("ne devrait pas permettre à un non-propriétaire d'enregistrer un électeur", async function () {
await expect(voting.connect(voter1).registerVoter(voter2.address)) await expect(voting.connect(voter1).registerVoter(voter2.address))
.to.be.revertedWith("Ownable: caller is not the owner"); .to.be.revertedWithCustomError(voting, "OwnableUnauthorizedAccount");
}); });
it("ne devrait pas permettre d'enregistrer un électeur déjà enregistré", async function () { it("ne devrait pas permettre d'enregistrer un électeur déjà enregistré", async function () {
...@@ -195,7 +195,8 @@ describe("Contrat Voting", function () { ...@@ -195,7 +195,8 @@ describe("Contrat Voting", function () {
}); });
it("ne devrait pas permettre d'accéder au gagnant avant le comptage", async function () { it("ne devrait pas permettre d'accéder au gagnant avant le comptage", async function () {
await voting.endVotingSession(); await expect(voting.endVotingSession())
.to.be.revertedWith("Impossible de terminer la session de vote");
// Sans appeler tallyVotes() // Sans appeler tallyVotes()
await expect(voting.getWinner()) await expect(voting.getWinner())
.to.be.revertedWith("Les votes n'ont pas encore ete comptabilises"); .to.be.revertedWith("Les votes n'ont pas encore ete comptabilises");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment