From 704892ef7bbacd36baa63deddb6fac501d0d6eee Mon Sep 17 00:00:00 2001 From: Miguel Covarrubias Date: Fri, 13 Sep 2024 11:22:21 -0400 Subject: [PATCH] fix unit tests --- .../backend/google/batch/models/GcpBatchJobPathsSpec.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/supportedBackends/google/batch/src/test/scala/cromwell/backend/google/batch/models/GcpBatchJobPathsSpec.scala b/supportedBackends/google/batch/src/test/scala/cromwell/backend/google/batch/models/GcpBatchJobPathsSpec.scala index 933d2958689..45e8241b66a 100644 --- a/supportedBackends/google/batch/src/test/scala/cromwell/backend/google/batch/models/GcpBatchJobPathsSpec.scala +++ b/supportedBackends/google/batch/src/test/scala/cromwell/backend/google/batch/models/GcpBatchJobPathsSpec.scala @@ -41,7 +41,7 @@ class GcpBatchJobPathsSpec extends TestKitSuite with AnyFlatSpecLike with Matche callPaths.returnCodeFilename should be("rc") callPaths.stderr.getFileName.pathAsString should be("gs://my-cromwell-workflows-bucket/stderr") callPaths.stdout.getFileName.pathAsString should be("gs://my-cromwell-workflows-bucket/stdout") - callPaths.batchLogFilename should be("hello.log") + callPaths.batchLogFilename should be("task.log") } it should "map the correct paths" in { @@ -69,7 +69,7 @@ class GcpBatchJobPathsSpec extends TestKitSuite with AnyFlatSpecLike with Matche callPaths.stderr.pathAsString should be(s"gs://my-cromwell-workflows-bucket/wf_hello/${workflowDescriptor.id}/call-hello/stderr") callPaths.batchLogPath.pathAsString should - be(s"gs://my-cromwell-workflows-bucket/wf_hello/${workflowDescriptor.id}/call-hello/hello.log") + be(s"gs://my-cromwell-workflows-bucket/wf_hello/${workflowDescriptor.id}/call-hello/task.log") } it should "map the correct call context" in {