Skip to content

Commit 084596d

Browse files
committed
style: fixed formatting
1 parent 206a4c5 commit 084596d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/com/thealgorithms/datastructures/lists/SkipListTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ void testSortedOrderOnBaseLevel() {
7878
String[] values = {"d", "b", "a", "c"};
7979
Arrays.stream(values).forEach(skipList::add);
8080

81-
String[] actualOrder = IntStream.range(0, values.length).mapToObj(skipList::get).toArray(String[]::new);
81+
String[] actualOrder = IntStream.range(0, values.length).mapToObj(skipList::get).toArray(String[] ::new);
8282

83-
org.junit.jupiter.api.Assertions.assertArrayEquals(new String[]{"a", "b", "c", "d"}, actualOrder);
83+
org.junit.jupiter.api.Assertions.assertArrayEquals(new String[] {"a", "b", "c", "d"}, actualOrder);
8484
}
8585

8686
@Test

0 commit comments

Comments
 (0)