| Index: third_party/WebKit/Source/platform/DecimalTest.cpp
|
| diff --git a/third_party/WebKit/Source/platform/DecimalTest.cpp b/third_party/WebKit/Source/platform/DecimalTest.cpp
|
| index 122137a84d2f0276ea7d0b17bfe4a7dacfb3e893..886ecc6eba3e3db3bf4bc3f9230ff2b1b2861716 100644
|
| --- a/third_party/WebKit/Source/platform/DecimalTest.cpp
|
| +++ b/third_party/WebKit/Source/platform/DecimalTest.cpp
|
| @@ -43,7 +43,7 @@ std::ostream& operator<<(std::ostream& os, const Decimal& decimal)
|
| return os
|
| << "encode(" << String::number(data.coefficient()).ascii().data()
|
| << ", " << String::number(data.exponent()).ascii().data()
|
| - << ", " << (data.sign() == Decimal::Negative ? "Negative" : "Positive")
|
| + << ", " << (data.getSign() == Decimal::Negative ? "Negative" : "Positive")
|
| << ")=" << decimal.toString().ascii().data();
|
| }
|
|
|
| @@ -112,7 +112,7 @@ protected:
|
| #define EXPECT_DECIMAL_ENCODED_DATA_EQ(expectedCoefficient, expectedExponent, expectedSign, decimal) \
|
| EXPECT_EQ((expectedCoefficient), (decimal).value().coefficient()); \
|
| EXPECT_EQ((expectedExponent), (decimal).value().exponent()); \
|
| - EXPECT_EQ(Decimal::expectedSign, (decimal).value().sign());
|
| + EXPECT_EQ(Decimal::expectedSign, (decimal).value().getSign());
|
|
|
| #define EXPECT_DECIMAL_STREQ(expected, decimal) EXPECT_STREQ((expected), (decimal).toString().ascii().data())
|
|
|
|
|