Skip to content

Commit

Permalink
Merge pull request #1687 from sphinx-labs/pate/fix-managed-service-test
Browse files Browse the repository at this point in the history
maint(ct): Fix test broken by Foundry update
  • Loading branch information
RPate97 authored Apr 19, 2024
2 parents 26ce8a3 + e4d91aa commit 426b71e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/contracts/test/ManagedService.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,6 @@ contract ManagedService_Test is Test, ManagedService {

function test_RevertIfOwnerIsAddressZero() external {
vm.expectRevert("ManagedService: admin cannot be address(0)");
new ManagedService{ salt: keccak256("1") }(address(0));
new ManagedService(address(0));
}
}

0 comments on commit 426b71e

Please sign in to comment.