diff --git a/Section8/src/test/java/challenge/arrays/SortIntegerArrayTest.java b/Section8/src/test/java/challenge/arrays/SortIntegerArrayTest.java index 5d459b7..cd2b2b0 100644 --- a/Section8/src/test/java/challenge/arrays/SortIntegerArrayTest.java +++ b/Section8/src/test/java/challenge/arrays/SortIntegerArrayTest.java @@ -7,8 +7,8 @@ public class SortIntegerArrayTest extends TestHelper { @Test public void arraySortingIsAsExpected() { - int[] inputArray = {1, 2, 3, 4, 5}; - String expectedOutput = "[5, 4, 3, 2, 1]"; + int[] inputArray = {1, 2, 3, 4, 5, 6}; + String expectedOutput = "[6, 5, 4, 3, 2, 1]"; SortIntegerArray.sortArray(inputArray); printArray(inputArray); @@ -32,4 +32,4 @@ public void arraySortingForAllSameIsAsExpected() { printArray(inputArray); assertSysout(expected); } -} \ No newline at end of file +}