Skip to content

Commit

Permalink
fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mcovarr committed Sep 13, 2024
1 parent 310ea72 commit 704892e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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 {
Expand Down

0 comments on commit 704892e

Please sign in to comment.