Skip to content

Commit

Permalink
Standardize on BigD
Browse files Browse the repository at this point in the history
  • Loading branch information
jgainerdewar committed Sep 13, 2024
1 parent 39f6d3d commit e5a51ae
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ class MetadataBuilderActorSpec
),
MetadataEvent(
MetadataKey(workflowId, Option(MetadataJobKey("callA", None, 1)), CallMetadataKeys.VmCostPerHour),
MetadataValue(-1) // indicates an error when computing vmCostPerHour
MetadataValue(BigDecimal(-1)) // indicates an error when computing vmCostPerHour
),
MetadataEvent(MetadataKey(workflowId, Option(MetadataJobKey("callB", None, 1)), CallMetadataKeys.VmStartTime),
MetadataValue("2023-10-30T11:01:00Z")
Expand All @@ -258,7 +258,7 @@ class MetadataBuilderActorSpec
MetadataValue("2023-10-30T12:31:00Z")
),
MetadataEvent(MetadataKey(workflowId, Option(MetadataJobKey("callB", None, 1)), CallMetadataKeys.VmCostPerHour),
MetadataValue(0.5)
MetadataValue(BigDecimal(0.5))
)
)
val query = MetadataQuery(workflowId, None, None, None, None, expandSubWorkflows = false)
Expand Down

0 comments on commit e5a51ae

Please sign in to comment.