Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
guidanoli committed Dec 20, 2024
1 parent 0664183 commit e38ec02
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions test/dapp/Application.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ contract ApplicationTest is TestBase, OwnableTest {
_consensus,
address(0),
_templateHash,
IERC165(address(0))
_dataAvailability
);
}

Expand Down Expand Up @@ -354,9 +354,10 @@ contract ApplicationTest is TestBase, OwnableTest {
_tokenIds,
_initialSupplies
);
_inputBox = new InputBox();
InputBox inputBox = new InputBox();
_inputBox = inputBox;
_dataAvailability = inputBox;
_consensus = new Authority(_authorityOwner, _epochLength);
_dataAvailability = IERC165(address(0));
_appContract = new Application(
_consensus,
_appOwner,
Expand Down

0 comments on commit e38ec02

Please sign in to comment.