Skip to content

Commit d9d5211

Browse files
committed
Attempt to fix dependency injection issue.
1 parent ddfa9c1 commit d9d5211

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/test/java/org/broadinstitute/hellbender/tools/AbstractPrintReadsIntegrationTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public void doFileToFile(String fileIn, String extOut, String reference, boolean
7474
}
7575
}
7676

77-
public void doFileToFileUsingReferenceBundle(String fileIn, String extOut, String reference, boolean testMD5) throws Exception {
77+
public void doFileToFileUsingReferenceBundle(final String fileIn, final String extOut, final String reference, final boolean testMD5) throws Exception {
7878
final String referenceToUse;
7979
if (reference != null) {
8080
// create the bundle, using inference to find the sibling files, then write the bundle out to a temp file
@@ -148,7 +148,7 @@ public Object[][] testingData() {
148148
}
149149

150150
@Test(dataProvider="testingData")
151-
public void testFileToFileUsingReferenceBundle(String fileIn, String extOut, String reference) throws Exception {
151+
public void testFileToFileUsingReferenceBundle(final String fileIn, final String extOut, final String reference) throws Exception {
152152
if (reference != null) {
153153
doFileToFileUsingReferenceBundle(fileIn, extOut, reference, false);
154154
}

src/test/java/org/broadinstitute/hellbender/tools/PrintReadsIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ public void testPrintReadsWithReferenceBundle() throws IOException {
160160
// only do reference bundle tests for non-spark tools, since for now the spark tools don't support reference bundles
161161
// (since they use 2-bit and hadoop references)
162162
@Test(dataProvider="testingData")
163-
public void testFileToFileWithReferenceBundle(String fileIn, String extOut, String reference) throws Exception {
163+
public void testFileToFileWithReferenceBundle(final String fileIn, final String extOut, final String reference) throws Exception {
164164
doFileToFileUsingReferenceBundle(fileIn, extOut, reference, false);
165165
}
166166

src/test/java/org/broadinstitute/hellbender/tools/spark/pipelines/PrintReadsSparkIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
public final class PrintReadsSparkIntegrationTest extends AbstractPrintReadsIntegrationTest {
3333

3434
@Override
35-
public void doFileToFileUsingReferenceBundle(String fileIn, String extOut, String reference, boolean testMD5) throws Exception {
35+
public void doFileToFileUsingReferenceBundle(final String fileIn, final String extOut, final String reference, final boolean testMD5) throws Exception {
3636
throw new SkipException("Bundles are not supported in Spark tools");
3737
}
3838

0 commit comments

Comments
 (0)