From ea0e16aaf650a9553f75989fe2c31a327b75434d Mon Sep 17 00:00:00 2001 From: Olexandr88 Date: Mon, 2 Feb 2026 14:32:42 +0200 Subject: [PATCH] test: make IS_TEST constant --- src/Test.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Test.sol b/src/Test.sol index af91dd81..92fcc3a6 100644 --- a/src/Test.sol +++ b/src/Test.sol @@ -28,5 +28,5 @@ import {TestBase} from "./Base.sol"; // ⭐️ TEST abstract contract Test is TestBase, StdAssertions, StdChains, StdCheats, StdInvariant, StdUtils { // Note: IS_TEST() must return true. - bool public IS_TEST = true; + bool public constant IS_TEST = true; }