From fd21c5d100667e04b646e0ddde40be94017f3a3e Mon Sep 17 00:00:00 2001 From: kshakir Date: Thu, 26 May 2011 22:56:33 +0000 Subject: [PATCH] Minor update so the debug messages don't show temp files as chromosome 208799060637697164972 git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@5887 348d0f76-0448-11de-a6fe-93d51630548a --- .../pipeline/playground/HybridSelectionPipelineTest.scala | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scala/test/org/broadinstitute/sting/queue/pipeline/playground/HybridSelectionPipelineTest.scala b/scala/test/org/broadinstitute/sting/queue/pipeline/playground/HybridSelectionPipelineTest.scala index 5e75c0f89..362e0536e 100644 --- a/scala/test/org/broadinstitute/sting/queue/pipeline/playground/HybridSelectionPipelineTest.scala +++ b/scala/test/org/broadinstitute/sting/queue/pipeline/playground/HybridSelectionPipelineTest.scala @@ -25,7 +25,6 @@ package org.broadinstitute.sting.queue.pipeline.playground import org.testng.annotations.{DataProvider, Test} -import java.io.File import org.broadinstitute.sting.datasources.pipeline.{PipelineSample, Pipeline} import org.broadinstitute.sting.utils.yaml.YamlUtils import org.broadinstitute.sting.queue.pipeline._ @@ -83,7 +82,7 @@ class HybridSelectionPipelineTest { } private def writeYaml(testName: String, pipeline: Pipeline) = { - val yamlFile = BaseTest.createTempFile(pipeline.getProject.getName, ".yaml") + val yamlFile = BaseTest.createTempFile(pipeline.getProject.getName + ".", ".yaml") YamlUtils.dump(pipeline, yamlFile) yamlFile }