Skip to content

Commit 2a60bb1

Browse files
updated line format
1 parent eb5bfb5 commit 2a60bb1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/com/thealgorithms/misc/ShuffleArrayTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.thealgorithms.misc;
22

3-
import static org.junit.jupiter.api.Assertions.assertNotEquals;
43
import static org.junit.jupiter.api.Assertions.assertArrayEquals;
4+
import static org.junit.jupiter.api.Assertions.assertNotEquals;
55
import static org.junit.jupiter.api.Assertions.assertTrue;
66

77
import org.junit.jupiter.api.Test;
@@ -88,7 +88,7 @@ void testShuffleLargeArray() {
8888
void testShuffleRetainsElements() {
8989
int[] arr = {1, 2, 3, 4, 5};
9090
ShuffleArray.shuffle(arr);
91-
91+
9292
// Check that the shuffled array contains the same elements
9393
assertTrue(arr.length == 5);
9494
for (int i = 1; i <= 5; i++) {

0 commit comments

Comments
 (0)