Fix the CachingIndexedFastaSequenceFileUnitTest

BaseUtils.convertIUPACtoN() no longer throws a UserException,
since it's in org.broadinstitute.variant
This commit is contained in:
David Roazen 2013-01-29 20:30:36 -05:00
parent 29fd536c28
commit 6449c320b4
1 changed files with 1 additions and 1 deletions

View File

@ -252,7 +252,7 @@ public class CachingIndexedFastaSequenceFileUnitTest extends BaseTest {
Assert.assertEquals(changingNs, preservingNs + 4);
}
@Test(enabled = true, expectedExceptions = {UserException.class})
@Test(enabled = true, expectedExceptions = {IllegalStateException.class})
public void testFailOnBadBase() throws FileNotFoundException, InterruptedException {
final String testFasta = privateTestDir + "problematicFASTA.fasta";
final CachingIndexedFastaSequenceFile fasta = new CachingIndexedFastaSequenceFile(new File(testFasta));