Skip to content

Commit

Permalink
Fix additional test that now behaves differently.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmnbroad committed Feb 22, 2018
1 parent 3cb9bb1 commit 35d61e2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package org.broadinstitute.hellbender.cmdline;

import org.broadinstitute.hellbender.CommandLineProgramTest;
import org.broadinstitute.hellbender.exceptions.PicardNonZeroExitException;
import org.broadinstitute.hellbender.utils.test.IntegrationTestSpec;
import org.testng.Assert;
import org.testng.annotations.Test;
Expand Down Expand Up @@ -45,7 +46,7 @@ public void testPicardNormalizeFasta() throws IOException {
IntegrationTestSpec.assertEqualTextFiles(outfile, expectedFile);
}

@Test
@Test(expectedExceptions=PicardNonZeroExitException.class)
public void testPicardNormalizeFastaWithBadArgs() throws IOException {
final File input = new File(TEST_DATA_PATH, "testfasta.fasta");
final File outfile = createTempFile("normalized", ".fasta");
Expand Down

0 comments on commit 35d61e2

Please sign in to comment.