Skip to content

Commit

Permalink
Rollback contract rename
Browse files Browse the repository at this point in the history
  • Loading branch information
cabrador committed Feb 5, 2025
1 parent 1c1a000 commit 4f7ecb6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions contracts/test/UnitTestVoteRecounter.sol
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.27;

/// @dev UnitTestVoteRecounter implementation for unit testing purpose
contract UnitTestVoteRecounter {
/// @dev FakeVoteRecounter is a VoteCounter contract for used unit tests
contract FakeVoteRecounter {
address public expectVoterAddr;
address public expectDelegatedTo;

Expand Down
2 changes: 1 addition & 1 deletion test/VotesBookKeeper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ describe("VotesBookKeeper", function () {
const [defaultAcc, otherAcc] = await ethers.getSigners();
const votesBookKeeper = await ethers.deployContract("VotesBookKeeper");
// Only one vote per address is allowed
const fakeGov = await ethers.deployContract("UnitTestVoteRecounter");
const fakeGov = await ethers.deployContract("FakeVoteRecounter");

return { defaultAcc, otherAcc, votesBookKeeper, fakeGov };
}
Expand Down

0 comments on commit 4f7ecb6

Please sign in to comment.