Skip to content

Commit

Permalink
Merge branch 'develop' into chore/renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
vgorkavenko authored Dec 2, 2024
2 parents 8858202 + 527b7b3 commit 531a1c0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/fork/voting/StatePostVote.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -158,17 +158,17 @@ contract ContractsStateTest is Test, Utilities, DeploymentFixtures {
}

function test_feeOracle_state() public {
// NOTE: It assumes the first report has been settled.
assertFalse(oracle.isPaused());
(
bytes32 hash,
uint256 refSlot,
uint256 processingDeadlineTime,
bool processingStarted
) = oracle.getConsensusReport();
assertEq(hash, bytes32(0));
assertEq(refSlot, 0);
assertEq(processingDeadlineTime, 0);
assertFalse(processingStarted);
assertFalse(hash == bytes32(0), "expected report hash to be non-zero");
assertGt(refSlot, 0);
assertGt(processingDeadlineTime, 0);
}

function test_feeOracle_roles() public {
Expand Down

0 comments on commit 531a1c0

Please sign in to comment.