Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mdehoog committed Dec 11, 2024
1 parent bf9a741 commit bc2bb2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/universal/NestedMultisigBuilder.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ contract NestedMultisigBuilderTest is Test, NestedMultisigBuilder {
bytes memory data = abi.encodeCall(this.approve, (safe2, abi.encodePacked(r, s, v)));
(bool success, bytes memory result) = address(this).call(data);
assertFalse(success);
assertEq(result, abi.encodeWithSignature("Error(string)", "GS026"));
assertEq(result, abi.encodeWithSignature("Error(string)", "not enough signatures"));
}

function test_run() external {
Expand Down

0 comments on commit bc2bb2a

Please sign in to comment.