Skip to content

Commit

Permalink
ctb: Add check to ensure deploy is removed from Safe
Browse files Browse the repository at this point in the history
  • Loading branch information
maurelian committed May 23, 2024
1 parent b917499 commit 29ef7cf
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/contracts-bedrock/test/Safe/DeployOwnership.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ contract DeployOwnershipTest is Test, DeployOwnership {

address[] memory safeOwners = _safe.getOwners();
assertEq(_safeConfig.owners.length, safeOwners.length);
assertFalse(_safe.isOwner(msg.sender));
for (uint256 i = 0; i < safeOwners.length; i++) {
assertEq(safeOwners[i], _safeConfig.owners[i]);
}
Expand Down

0 comments on commit 29ef7cf

Please sign in to comment.