Skip to content

Commit

Permalink
Merge branch 'test/add-wonder-votes-unit-tests' of github-defi:defi-w…
Browse files Browse the repository at this point in the history
…onderland/wonderland-governooor-poc into test/add-integration-tests

Signed-off-by: 0xRaccoon <[email protected]>
  • Loading branch information
0xRaccoon committed Dec 27, 2023
2 parents 66a61f2 + 278f18a commit 0320deb
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion solidity/test/smock/SmockHelper.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
pragma solidity ^0.8.20;

import {Test} from 'forge-std/Test.sol';

Expand Down
2 changes: 1 addition & 1 deletion solidity/test/smock/examples/MockAliceGovernor.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
pragma solidity ^0.8.20;

import {Test} from 'forge-std/Test.sol';
import {
Expand Down
2 changes: 1 addition & 1 deletion solidity/test/smock/examples/MockRabbitToken.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
pragma solidity ^0.8.20;

import {Test} from 'forge-std/Test.sol';
import {AliceGovernor, EIP712, ERC20, RabbitToken, WonderERC20Votes} from 'solidity/examples/RabbitToken.sol';
Expand Down
4 changes: 3 additions & 1 deletion solidity/test/unit/WonderGovernor.t.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
pragma solidity ^0.8.20;

import 'forge-std/Test.sol';

import {WonderGovernor} from 'contracts/governance/WonderGovernor.sol';
import {IWonderGovernor} from 'interfaces/governance/IWonderGovernor.sol';
Expand Down
4 changes: 3 additions & 1 deletion solidity/test/unit/WonderVotes.t.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
pragma solidity ^0.8.20;

import 'forge-std/Test.sol';

import {WonderGovernor} from 'contracts/governance/WonderGovernor.sol';
import {IWonderGovernor} from 'interfaces/governance/IWonderGovernor.sol';
Expand Down

0 comments on commit 0320deb

Please sign in to comment.