Skip to content

Commit e7839d4

Browse files
formatted according to clang-format
1 parent 48c1fbc commit e7839d4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/test/java/com/thealgorithms/shufflealgorithm/ConstrainedShuffleTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@
55
import static org.junit.jupiter.api.Assertions.assertTrue;
66

77
import com.thealgorithms.shufflealogrithm.ConstrainedShuffle;
8+
89
import java.util.Arrays;
910
import java.util.HashSet;
1011
import java.util.Set;
12+
1113
import org.junit.jupiter.api.BeforeEach;
1214
import org.junit.jupiter.api.Test;
1315

@@ -17,7 +19,7 @@ public class ConstrainedShuffleTest {
1719

1820
@BeforeEach
1921
void setUp() {
20-
originalArray = new int[] {1, 2, 3, 4, 5};
22+
originalArray = new int[]{1, 2, 3, 4, 5};
2123
}
2224

2325
// Test that shuffling preserves the length and original elements

0 commit comments

Comments
 (0)