Skip to content

Commit

Permalink
Update src/model/test/Surface_GTest.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
jmarrec committed Sep 15, 2022
1 parent cef60b9 commit 294ca1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/model/test/Surface_GTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3831,9 +3831,9 @@ TEST_F(ModelFixture, 4678_SurfaceGlassUFactorSqlError) {

ASSERT_TRUE(surface->uFactor());
double uFactor = surface->uFactor().get();
EXPECT_TRUE(openstudio::equal(0.310, uFactor, 1.0E-3));
EXPECT_DOUBLE_EQ(0.310, uFactor);

ASSERT_TRUE(surface->thermalConductance());
double thermalConductance = surface->thermalConductance().get();
EXPECT_TRUE(openstudio::equal(0.325, thermalConductance, 1.0E-3));
EXPECT_DOUBLE_EQ(0.325, thermalConductance);
}

0 comments on commit 294ca1d

Please sign in to comment.