Fixing bad VCFIntegration tests

-- Left disabled a test that should have been enabled
-- Didn't add the md5 to the test I actually added
-- Now VCFIntegrationTests should be working!
This commit is contained in:
Mark DePristo 2012-02-25 11:26:36 -05:00
parent 9bad51877e
commit 50de1a3eab
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ import java.util.List;
public class VCFIntegrationTest extends WalkerTest {
@Test(enabled = false)
@Test(enabled = true)
public void testReadingAndWritingWitHNoChanges() {
String md5ofInputVCF = "a990ba187a69ca44cb9bc2bb44d00447";
@ -35,7 +35,7 @@ public class VCFIntegrationTest extends WalkerTest {
String baseCommand = "-R " + b37KGReference + " -NO_HEADER -o %s ";
String test1 = baseCommand + "-T SelectVariants -V " + testVCF;
WalkerTestSpec spec1 = new WalkerTestSpec(test1, 1, Arrays.asList(""));
WalkerTestSpec spec1 = new WalkerTestSpec(test1, 1, Arrays.asList("76075307afd26b4db6234795d9fb3c2f"));
executeTest("Test reading and writing breakpoint VCF", spec1);
}