Skip to content

Commit

Permalink
More typos in new model test.
Browse files Browse the repository at this point in the history
  • Loading branch information
joseph-robertson committed Aug 30, 2023
1 parent d01843a commit b0f6f2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/model/test/TableLookup_GTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -357,12 +357,12 @@ TEST_F(ModelFixture, TableLookup_CoilWaterToAirHeatPumpEquationFit) {
EXPECT_EQ(cql3, cc.coolingPowerConsumptionCurve());

CurveQuadLinear cql4(m);
EXPECT_TRUE(ch.setHeatingCapacityCurve(cql1));
EXPECT_TRUE(ch.setHeatingCapacityCurve(cql4));
ASSERT_TRUE(ch.heatingCapacityCurve().optionalCast<CurveQuadLinear>());
EXPECT_EQ(cql4, ch.heatingCapacityCurve());

CurveQuadLinear cql5(m);
EXPECT_TRUE(ch.setHeatingPowerConsumptionCurve(cql1));
EXPECT_TRUE(ch.setHeatingPowerConsumptionCurve(cql5));
ASSERT_TRUE(ch.heatingPowerConsumptionCurve().optionalCast<CurveQuadLinear>());
EXPECT_EQ(cql5, ch.heatingPowerConsumptionCurve());

Expand Down

0 comments on commit b0f6f2e

Please sign in to comment.