Skip to content

Commit 8471b94

Browse files
committed
Fix
1 parent f32b896 commit 8471b94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/thealgorithms/searches/UpperBoundTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ void setUp() {
2424
.distinct() // Ensure all elements are unique
2525
.sorted()
2626
.boxed()
27-
.toArray(Integer[]::new);
27+
.toArray(Integer[] ::new);
2828
}
2929

3030
@Test

0 commit comments

Comments
 (0)