Skip to content

Commit 704892e

Browse files
committed
fix unit tests
1 parent 310ea72 commit 704892e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

supportedBackends/google/batch/src/test/scala/cromwell/backend/google/batch/models/GcpBatchJobPathsSpec.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class GcpBatchJobPathsSpec extends TestKitSuite with AnyFlatSpecLike with Matche
4141
callPaths.returnCodeFilename should be("rc")
4242
callPaths.stderr.getFileName.pathAsString should be("gs://my-cromwell-workflows-bucket/stderr")
4343
callPaths.stdout.getFileName.pathAsString should be("gs://my-cromwell-workflows-bucket/stdout")
44-
callPaths.batchLogFilename should be("hello.log")
44+
callPaths.batchLogFilename should be("task.log")
4545
}
4646

4747
it should "map the correct paths" in {
@@ -69,7 +69,7 @@ class GcpBatchJobPathsSpec extends TestKitSuite with AnyFlatSpecLike with Matche
6969
callPaths.stderr.pathAsString should
7070
be(s"gs://my-cromwell-workflows-bucket/wf_hello/${workflowDescriptor.id}/call-hello/stderr")
7171
callPaths.batchLogPath.pathAsString should
72-
be(s"gs://my-cromwell-workflows-bucket/wf_hello/${workflowDescriptor.id}/call-hello/hello.log")
72+
be(s"gs://my-cromwell-workflows-bucket/wf_hello/${workflowDescriptor.id}/call-hello/task.log")
7373
}
7474

7575
it should "map the correct call context" in {

0 commit comments

Comments
 (0)