MathExtrasTest.cpp: Use EXPECT_DOUBLE_EQ here, instead of EXPECT_FLOAT_EQ.

llvm-svn: 263508
This commit is contained in:
NAKAMURA Takumi 2016-03-14 23:11:28 +00:00
parent 6257b93e69
commit fa99425667
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ TEST(MathExtras, FloatBits) {
TEST(MathExtras, DoubleBits) { TEST(MathExtras, DoubleBits) {
static const double kValue = 87987234.983498; static const double kValue = 87987234.983498;
EXPECT_FLOAT_EQ(kValue, BitsToDouble(DoubleToBits(kValue))); EXPECT_DOUBLE_EQ(kValue, BitsToDouble(DoubleToBits(kValue)));
} }
TEST(MathExtras, MinAlign) { TEST(MathExtras, MinAlign) {