Skip to content

Commit

Permalink
fixed broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
martinvol committed Jan 4, 2024
1 parent 8576b23 commit e2747c8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ contract BlockchainParametersTest_initialize is BlockchainParametersTest {
blockchainParameters.initialize(gasForNonGoldCurrencies, gasLimit, lookbackWindow);
}

function test_ShoudEmit_ownershipTransferred() public {
function test_ShoudEmit_OwnershipTransferred() public {
vm.expectEmit(true, true, true, true);
emit OwnershipTransferred(msg.sender, msg.sender);
emit OwnershipTransferred(address(this), address(this));
blockchainParameters.initialize(gasForNonGoldCurrencies, gasLimit, lookbackWindow);
}
}
Expand Down

0 comments on commit e2747c8

Please sign in to comment.