Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contracts/test/Chainvoice.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ contract ChainvoiceTest is Test {
address newOwner = address(0xC0FFEE);

vm.prank(alice); // alice is not the owner
vm.expectRevert("Only owner can call");
vm.expectRevert(Chainvoice.Unauthorized.selector);
chainvoice.initiateOwnershipTransfer(newOwner);

vm.prank(address(this)); // this is the owner (from setUp)
Expand Down
Loading