Skip to content
This repository was archived by the owner on Dec 17, 2025. It is now read-only.

Commit b371b30

Browse files
committed
Merge remote-tracking branch 'origin/dev' into test/certora-remove-staging
2 parents b3db9af + 15019f8 commit b371b30

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

test/TestLogarithmicBuckets.t.sol

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,9 @@ contract TestLogarithmicBuckets is LogarithmicBucketsMock, Test {
115115
assertEq(buckets.getMatch(16), accounts[0], "head equal");
116116
assertEq(buckets.getMatch(32), accounts[0], "head above");
117117
}
118+
}
118119

120+
contract TestProveLogarithmicBuckets is LogarithmicBucketsMock, Test {
119121
function isPowerOfTwo(uint256 x) public pure returns (bool) {
120122
unchecked {
121123
return x != 0 && (x & (x - 1)) == 0;

0 commit comments

Comments
 (0)