Skip to content

Commit

Permalink
Typos in model test.
Browse files Browse the repository at this point in the history
  • Loading branch information
joseph-robertson committed Oct 4, 2024
1 parent 009e003 commit 4e54e88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/model/test/ControllerOutdoorAir_GTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ TEST_F(ModelFixture, ControllerOutdoorAir_GettersSetters) {
EXPECT_EQ("EconomizerFirst", controller.economizerOperationStaging());

// Electronic Enthalpy Limit Curve
CurveQuadratic electronicEnthalpyLimitCurve(m);
CurveQuadratic electronicEnthalpyLimitCurve(model);
EXPECT_TRUE(controller.setElectronicEnthalpyLimitCurve(electronicEnthalpyLimitCurve));
ASSERT_TRUE(controller.electronicEnthalpyLimitCurve());
EXPECT_EQ(electronicEnthalpyLimitCurve, controller.electronicEnthalpyLimitCurve().get());
Expand All @@ -89,7 +89,7 @@ TEST_F(ModelFixture, ControllerOutdoorAir_GettersSetters) {

// Humidistat Control Zone
EXPECT_FALSE(controller.getHighHumidityControl());
ThermalZone humidistatControlZone(m);
ThermalZone humidistatControlZone(model);
EXPECT_TRUE(controller.setHumidistatControlZone(humidistatControlZone));
ASSERT_TRUE(controller.humidistatControlZone());
EXPECT_EQ(humidistatControlZone, controller.humidistatControlZone().get());
Expand Down

0 comments on commit 4e54e88

Please sign in to comment.