Skip to content

Commit

Permalink
Fix call of new method in ospsuite utils
Browse files Browse the repository at this point in the history
  • Loading branch information
pchelle committed Jun 26, 2024
1 parent e8185c5 commit d0b634c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/simulation-set.R
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ SimulationSet <- R6::R6Class(
targetUnit = timeUnit
)
validateVectorRange(timeOffset, type = "numeric", valueRange = c(0, endTime))
validateVectorRange(minimumSimulationEndTime, type = "numeric", valueRange = c(0, endTime), nullAllowed = TRUE)
validateVector(minimumSimulationEndTime, type = "numeric", valueRange = c(0, endTime), nullAllowed = TRUE)

# Test and validate outputs and their paths
validateOutputObject(c(outputs), simulation, nullAllowed = TRUE)
Expand Down

0 comments on commit d0b634c

Please sign in to comment.