Skip to content

Commit

Permalink
Update testFail... test names
Browse files Browse the repository at this point in the history
  • Loading branch information
asselstine committed Feb 12, 2025
1 parent 58937ec commit bf3d694
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/ObservationLib.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ contract ObservationLibTest is BaseTest {
}

// Outside of range
function testFailBinarySearch_OneItem_TargetBefore() public {
function test_Revert_If_BinarySearch_OneItem_TargetBefore() public {
uint32[] memory t = new uint32[](1);
t[0] = 10;
observationLibMock.populateObservations(t);
Expand Down Expand Up @@ -133,7 +133,7 @@ contract ObservationLibTest is BaseTest {
}

// Outside of range
function testFailBinarySearch_OneItem_TargetAfter() public {
function test_Revert_If_BinarySearch_OneItem_TargetAfter() public {
uint32[] memory t = new uint32[](1);
t[0] = 10;
observationLibMock.populateObservations(t);
Expand Down

0 comments on commit bf3d694

Please sign in to comment.