We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58937ec commit bf3d694Copy full SHA for bf3d694
test/ObservationLib.t.sol
@@ -90,7 +90,7 @@ contract ObservationLibTest is BaseTest {
90
}
91
92
// Outside of range
93
- function testFailBinarySearch_OneItem_TargetBefore() public {
+ function test_Revert_If_BinarySearch_OneItem_TargetBefore() public {
94
uint32[] memory t = new uint32[](1);
95
t[0] = 10;
96
observationLibMock.populateObservations(t);
@@ -133,7 +133,7 @@ contract ObservationLibTest is BaseTest {
133
134
135
136
- function testFailBinarySearch_OneItem_TargetAfter() public {
+ function test_Revert_If_BinarySearch_OneItem_TargetAfter() public {
137
138
139
0 commit comments