Skip to content

Commit 9c99229

Browse files
committed
Fix
1 parent 3783ac5 commit 9c99229

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ void setUp() {
2121
int size = 100;
2222
int maxElement = 100;
2323
sortedArray = random.ints(size, 1, maxElement)
24-
.distinct() // Ensure all elements are unique
25-
.sorted()
26-
.boxed()
27-
.toArray(Integer[]::new);
24+
.distinct() // Ensure all elements are unique
25+
.sorted()
26+
.boxed()
27+
.toArray(Integer[]::new);
2828
}
2929

3030
@Test

0 commit comments

Comments
 (0)