Skip to content

Commit bf3d694

Browse files
committed
Update testFail... test names
1 parent 58937ec commit bf3d694

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/ObservationLib.t.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ contract ObservationLibTest is BaseTest {
9090
}
9191

9292
// Outside of range
93-
function testFailBinarySearch_OneItem_TargetBefore() public {
93+
function test_Revert_If_BinarySearch_OneItem_TargetBefore() public {
9494
uint32[] memory t = new uint32[](1);
9595
t[0] = 10;
9696
observationLibMock.populateObservations(t);
@@ -133,7 +133,7 @@ contract ObservationLibTest is BaseTest {
133133
}
134134

135135
// Outside of range
136-
function testFailBinarySearch_OneItem_TargetAfter() public {
136+
function test_Revert_If_BinarySearch_OneItem_TargetAfter() public {
137137
uint32[] memory t = new uint32[](1);
138138
t[0] = 10;
139139
observationLibMock.populateObservations(t);

0 commit comments

Comments
 (0)