Skip to content

Commit

Permalink
Re-enable IndexFeatureFile test for uncompressed BCF. (#6716)
Browse files Browse the repository at this point in the history
  • Loading branch information
cmnbroad authored and mwalker174 committed Nov 3, 2020
1 parent f0525fd commit 6e75f1e
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,7 @@ public void testBCFIndex() {
checkIndex(index, Arrays.asList("1"));
}

// test disabled until https://github.com/samtools/htsjdk/issues/1323 is resolved
@Test(enabled = false)
@Test(expectedExceptions = UserException.CouldNotIndexFile.class)
public void testUncompressedBCF2_2Index() {
final File ORIG_FILE = getTestFile("test_variants_for_index.BCF22uncompressed.bcf");
final File outName = createTempFile("test_variants_for_index.BCF22uncompressed.bcf", ".idx");
Expand All @@ -249,7 +248,7 @@ public void testUncompressedBCF2_2Index() {
"-I", ORIG_FILE.getAbsolutePath(),
"-O", outName.getAbsolutePath()
};
final Object res = this.runCommandLine(args);
this.runCommandLine(args);
}

@Test(expectedExceptions = UserException.NoSuitableCodecs.class)
Expand Down

0 comments on commit 6e75f1e

Please sign in to comment.