From 113b11cc97dbe416db99b1e8dfdc8144a34126d2 Mon Sep 17 00:00:00 2001 From: Oliver Chalk Date: Fri, 22 Apr 2022 10:35:13 +1000 Subject: [PATCH] style(test): add STD-CHEATS code region --- src/Test.sol | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Test.sol b/src/Test.sol index 78f3d82f..ce673e05 100644 --- a/src/Test.sol +++ b/src/Test.sol @@ -14,6 +14,10 @@ abstract contract Test is DSTest { Vm public constant vm = Vm(HEVM_ADDRESS); StdStorage internal stdstore; + /*////////////////////////////////////////////////////////////////////////// + STD-CHEATS + //////////////////////////////////////////////////////////////////////////*/ + // Skip forward or rewind time by the specified number of seconds function skip(uint256 time) public { vm.warp(block.timestamp + time);