@@ -9,7 +9,7 @@ public class StalinSortTest {
9
9
public void testSortIntegers () {
10
10
StalinSort stalinSort = new StalinSort ();
11
11
Integer [] input = {4 , 23 , 6 , 78 , 1 , 54 , 231 , 9 , 12 };
12
- Integer [] expected = {4 , 23 , 78 , 231 };
12
+ Integer [] expected = {4 , 23 , 78 , 231 };
13
13
Integer [] result = stalinSort .sort (input );
14
14
assertArrayEquals (expected , result );
15
15
}
@@ -27,7 +27,7 @@ public void testSortStrings() {
27
27
public void testSortWithDuplicates () {
28
28
StalinSort stalinSort = new StalinSort ();
29
29
Integer [] input = {1 , 3 , 2 , 2 , 5 , 4 };
30
- Integer [] expected = {1 , 2 , 5 };
30
+ Integer [] expected = {1 , 2 , 5 };
31
31
Integer [] result = stalinSort .sort (input );
32
32
assertArrayEquals (expected , result );
33
33
}
@@ -36,7 +36,7 @@ public void testSortWithDuplicates() {
36
36
public void testSortEmptyArray () {
37
37
StalinSort stalinSort = new StalinSort ();
38
38
Integer [] input = {};
39
- Integer [] expected = {};
39
+ Integer [] expected = {};
40
40
Integer [] result = stalinSort .sort (input );
41
41
assertArrayEquals (expected , result );
42
42
}
0 commit comments