Skip to content

Commit a73fb98

Browse files
authored
Fix test name for binary search exercise (exercism#2883)
This updates the test's name to reflect the ""a value larger than the array's largest value is not found" test from the problem specifications. [no important files changed] Fixes exercism#2881
1 parent 6609226 commit a73fb98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/practice/binary-search/src/test/java/BinarySearchTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public void aValueSmallerThanTheArraysSmallestValueIsNotFound() {
9494

9595
@Disabled("Remove to run test")
9696
@Test
97-
public void aValueLargerThanTheArraysSmallestValueIsNotFound() throws ValueNotFoundException {
97+
public void aValueLargerThanTheArraysLargestValueIsNotFound() throws ValueNotFoundException {
9898
List<Integer> sortedList = List.of(1, 3, 4, 6, 8, 9, 11);
9999

100100
BinarySearch search = new BinarySearch(sortedList);

0 commit comments

Comments
 (0)