Skip to content

Commit 45f1bee

Browse files
andreivladbrgsmol-ninja
authored andcommitted
test: update version in test_ConstructCreate2Salt
1 parent 29247d8 commit 45f1bee

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

airdrops/tests/utils/BaseScript.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ contract BaseScript_Test is StdAssertions {
2020

2121
function test_ConstructCreate2Salt() public view {
2222
string memory chainId = block.chainid.toString();
23-
string memory version = "2.0.1";
23+
string memory version = "3.0.0";
2424
string memory salt = string.concat("ChainID ", chainId, ", Version ", version);
2525

2626
bytes32 actualSalt = baseScript.SALT();

flow/tests/utils/BaseScript.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ contract BaseScript_Test is StdAssertions {
1818

1919
function test_ConstructCreate2Salt() public view {
2020
string memory chainId = block.chainid.toString();
21-
string memory version = "2.0.1";
21+
string memory version = "2.1.0";
2222
string memory salt = string.concat("ChainID ", chainId, ", Version ", version);
2323

2424
bytes32 actualSalt = baseScript.SALT();

lockup/tests/utils/BaseScript.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ contract BaseScript_Test is StdAssertions {
1818

1919
function test_ConstructCreate2Salt() public view {
2020
string memory chainId = block.chainid.toString();
21-
string memory version = "3.0.1";
21+
string memory version = "4.0.0";
2222
string memory salt = string.concat("ChainID ", chainId, ", Version ", version);
2323

2424
bytes32 actualSalt = baseScript.SALT();

utils/tests/integration/fuzz/base-script/BaseScript.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { BaseScriptMock } from "tests/mocks/BaseScriptMock.sol";
1010
contract BaseScript_Fuzz_Test is StdAssertions {
1111
BaseScriptMock internal baseScript;
1212

13-
string public constant PACKAGE_VERSION = "1.0.2";
13+
string public constant PACKAGE_VERSION = "1.1.0";
1414

1515
Vm internal vm = StdConstants.VM;
1616

0 commit comments

Comments
 (0)