diff --git a/tests/devtools-evm-hardhat-test/contracts/TestProxy.sol b/tests/devtools-evm-hardhat-test/contracts/TestProxy.sol index 047847340..7910df6c9 100644 --- a/tests/devtools-evm-hardhat-test/contracts/TestProxy.sol +++ b/tests/devtools-evm-hardhat-test/contracts/TestProxy.sol @@ -8,7 +8,7 @@ import { Proxied } from "hardhat-deploy/solc_0.8/proxy/Proxied.sol"; contract TestProxy is Initializable, Proxied { function initialize() public proxied initializer {} - function contractMethod() public view returns (uint256 something) { + function contractMethod() public pure returns (uint256 something) { something = 100; } }