Skip to content

Commit bb4a65b

Browse files
committed
Fix testcase because chunks have now different order
1 parent 2b0d1bf commit bb4a65b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/test/java/genepi/imputationserver/steps/FastQualityControlTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,9 +175,8 @@ public void testCountSitesForOneChunkedContig() throws IOException {
175175

176176
File[] files = new File(out).listFiles();
177177
Arrays.sort(files);
178-
179178
// baseline from a earlier job execution
180-
int[] array = { 4588, 968, 3002, 5781, 5116, 4750, 5699, 5174, 6334, 3188, 5106, 5832, 5318 };
179+
int[] array = { 4750, 5174, 5106, 5832, 5318, 4588, 968, 3002, 5781, 5116, 5699, 6334, 3188 };
181180
int pos = 0;
182181

183182
for (File file : files) {

0 commit comments

Comments
 (0)