Skip to content

Commit

Permalink
chore: Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
tnkshuuhei committed Oct 12, 2024
1 parent 63c7ba9 commit aec2cd0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
File renamed without changes.
6 changes: 5 additions & 1 deletion test/CEP.t.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.25;

import { BaseTest } from "./Base.sol";
import { BaseTest } from "./Base.t.sol";
import { console2 } from "forge-std/console2.sol";

import "../src/CEP.sol";
Expand All @@ -16,4 +16,8 @@ contract CEPTest is BaseTest {
function setUp() public virtual {
voteToken = new VotingCEPToken(owner, owner, owner);
}

function testDeploy() external view {
vm.assertFalse(address(cep) != address(0), "CEP should be deployed");
}
}

0 comments on commit aec2cd0

Please sign in to comment.