diff --git a/test/internal/CreateX._efficientHash.t.sol b/test/internal/CreateX._efficientHash.t.sol index 6dcb84f4..4750c250 100644 --- a/test/internal/CreateX._efficientHash.t.sol +++ b/test/internal/CreateX._efficientHash.t.sol @@ -8,7 +8,7 @@ contract CreateX_EfficientHash_Internal_Test is BaseTest { /* TESTS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ - function testFuzz_MatchesTheOutputOfAHighLevelHashAndShouldNeverRevert(bytes32 a, bytes32 b) external { + function testFuzz_MatchesTheOutputOfAHighLevelHashAndShouldNeverRevert(bytes32 a, bytes32 b) external view { // It should match the output of a high-level hash. // It should never revert. bytes32 expected = keccak256(abi.encodePacked(a, b)); diff --git a/test/invariants/CreateX_Invariants.t.sol b/test/invariants/CreateX_Invariants.t.sol index cbf9bbf0..879623e8 100644 --- a/test/invariants/CreateX_Invariants.t.sol +++ b/test/invariants/CreateX_Invariants.t.sol @@ -32,7 +32,7 @@ contract CreateX_Invariants is Test { /* TESTS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ - function statefulFuzz_EtherBalance() external { + function statefulFuzz_EtherBalance() external view { assertEq(createXAddr.balance, createXHandler.updatedBalance(), "100"); } }