From 3f36df42e733e4a494bb238adcfc9aeeb502f5b4 Mon Sep 17 00:00:00 2001 From: andreivladbrg Date: Mon, 12 Feb 2024 16:00:27 +0200 Subject: [PATCH] test: pragma solidity >=0.8.22 in base script test --- test/utils/BaseScript.t.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/utils/BaseScript.t.sol b/test/utils/BaseScript.t.sol index bf9533720..e27ad1b68 100644 --- a/test/utils/BaseScript.t.sol +++ b/test/utils/BaseScript.t.sol @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -pragma solidity >=0.8.19 <0.9.0; +pragma solidity >=0.8.22 <0.9.0; import { Strings } from "@openzeppelin/contracts/utils/Strings.sol"; import { PRBTest } from "@prb/test/src/PRBTest.sol";