Skip to content

Commit

Permalink
feat: constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
ashitakah committed Aug 14, 2024
1 parent 47a9a5e commit 7f207f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/EBORequestCreator.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ contract EBORequestCreator_Unit_Constructor is EBORequestCreator_Unit_BaseTest {

_requestData.nonce = _nonce;
vm.expectRevert(abi.encodeWithSelector(IEBORequestCreator.EBORequestCreator_InvalidNonce.selector));
EBORequestCreator _newEboRequestCreator = new EBORequestCreator(oracle, arbitrator, council, _requestData);
new EBORequestCreator(oracle, arbitrator, council, _requestData);
}
}

Expand Down

0 comments on commit 7f207f3

Please sign in to comment.