Skip to content

Commit

Permalink
Adjust test following merge of #4175
Browse files Browse the repository at this point in the history
  • Loading branch information
jmarrec committed Mar 4, 2021
1 parent 8268d31 commit c99f275
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/model/test/GeneratorPhotovoltaic_GTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ TEST_F(ModelFixture, GeneratorPhotovoltaic_Simple) {
EXPECT_FALSE(panel.ratedElectricPowerOutput());
EXPECT_FALSE(panel.availabilitySchedule());
EXPECT_FALSE(panel.ratedThermaltoElectricalPowerRatio());
//should be false now that ELDC is not in ctor
// Should be false now that ELCD is not in ctor
EXPECT_FALSE(panel.electricLoadCenterDistribution());

Point3dVector points;
Expand Down Expand Up @@ -120,7 +120,7 @@ TEST_F(ModelFixture, GeneratorPhotovoltaic_OneDiode) {
EXPECT_FALSE(panel.ratedElectricPowerOutput());
EXPECT_FALSE(panel.availabilitySchedule());
EXPECT_FALSE(panel.ratedThermaltoElectricalPowerRatio());
//should be false now that ELDC is not in ctor
// Should be false now that ELCD is not in ctor
EXPECT_FALSE(panel.electricLoadCenterDistribution());

Point3dVector points;
Expand Down Expand Up @@ -176,8 +176,8 @@ TEST_F(ModelFixture, GeneratorPhotovoltaic_Sandia) {
EXPECT_FALSE(panel.ratedElectricPowerOutput());
EXPECT_FALSE(panel.availabilitySchedule());
EXPECT_FALSE(panel.ratedThermaltoElectricalPowerRatio());
//should be true now that ELDC is in ctor
EXPECT_TRUE(panel.electricLoadCenterDistribution());
// Should be false now that ELCD is not in ctor
EXPECT_FALSE(panel.electricLoadCenterDistribution());

Point3dVector points;
points.push_back(Point3d(0, 1, 0));
Expand Down

0 comments on commit c99f275

Please sign in to comment.