Commit 6985f354 authored by Maurelian's avatar Maurelian

ctb: Fix Semver test names

parent 0c02fcb6
...@@ -26,7 +26,7 @@ contract Semver_Test is CommonTest { ...@@ -26,7 +26,7 @@ contract Semver_Test is CommonTest {
/** /**
* @notice Test the version getter * @notice Test the version getter
*/ */
function test_version() external { function test_version_succeeds() external {
assertEq(semver.version(), "7.8.0"); assertEq(semver.version(), "7.8.0");
} }
...@@ -35,7 +35,7 @@ contract Semver_Test is CommonTest { ...@@ -35,7 +35,7 @@ contract Semver_Test is CommonTest {
* be able to be accessed from behind a proxy without needing * be able to be accessed from behind a proxy without needing
* to initialize the contract. * to initialize the contract.
*/ */
function test_behindProxy() external { function test_behindProxy_succeeds() external {
Proxy proxy = new Proxy(alice); Proxy proxy = new Proxy(alice);
vm.prank(alice); vm.prank(alice);
proxy.upgradeTo(address(semver)); proxy.upgradeTo(address(semver));
......
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