File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/contracts-bedrock/test/invariants Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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.
You can’t perform that action at this time.
0 commit comments