Skip to content

Commit d1e3076

Browse files
committed
chore: change error name
1 parent a64e1d6 commit d1e3076

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/contracts-bedrock/test/invariants/CustomGasToken.t.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ contract RandomActor is StdUtils {
123123
bool public hasBeenCalled = false;
124124

125125
/// @notice Error thrown when sending CGT to minter fails.
126-
error RandomActor_SendCGTtoMinterFailed();
126+
error RandomActor_SendCGTToMinterFailed();
127127

128128
/// @notice Error thrown when sending CGT to funder fails.
129129
error RandomActor_SendCGTtoFunderFailed();
@@ -148,7 +148,7 @@ contract RandomActor is StdUtils {
148148
(bool success,) = payable(address(liquidityController_Minter)).call{ value: _amountToSend }("");
149149

150150
// postcondition: the call must succeed (test suite sanity check)
151-
if (!success) revert RandomActor_SendCGTtoMinterFailed();
151+
if (!success) revert RandomActor_SendCGTToMinterFailed();
152152
}
153153

154154
/// @notice Send CGT to the funder actor.

0 commit comments

Comments
 (0)