Skip to content

Commit

Permalink
Fixed naming of a value in PowerFlowSupportSpec.
Browse files Browse the repository at this point in the history
  • Loading branch information
staudtMarius committed Jan 28, 2025
1 parent d69e34b commit d3f99a2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ class PowerFlowSupportSpec
)

"perform the power flow for the slack grid correctly" in {
val withMvPowerFlowResults: Map[UUID, Dimensionless] = {
val withEhvPowerFlowResults: Map[UUID, Dimensionless] = {
val (gridModel, receivedValueStore) = TestData.withEHV

val (operationPoint, slackNodeVoltages) = composeOperatingPoint(
Expand Down Expand Up @@ -452,7 +452,7 @@ class PowerFlowSupportSpec
}

onlyHvPowerFlowResults.foreach { case (uuid, result) =>
withMvPowerFlowResults(uuid) should approximate(result)(tolerance)
withEhvPowerFlowResults(uuid) should approximate(result)(tolerance)
}
}
}
Expand Down

0 comments on commit d3f99a2

Please sign in to comment.