| Index: third_party/WebKit/Source/platform/geometry/FloatBoxTestHelpers.cpp
|
| diff --git a/third_party/WebKit/Source/platform/geometry/FloatBoxTestHelpers.cpp b/third_party/WebKit/Source/platform/geometry/FloatBoxTestHelpers.cpp
|
| index 136fbe0a8fa22ad24758065ec48b4449ae348fcd..3b1ed38af3bca188b96dcdcc00d26b2f4de7d585 100644
|
| --- a/third_party/WebKit/Source/platform/geometry/FloatBoxTestHelpers.cpp
|
| +++ b/third_party/WebKit/Source/platform/geometry/FloatBoxTestHelpers.cpp
|
| @@ -54,7 +54,7 @@ bool ApproximatelyEqual(const FloatBox& a, const FloatBox& b) {
|
| if (!ApproximatelyEqual(m, n)) {
|
| return ::testing::AssertionFailure()
|
| << " Value of:" << n_expr << std::endl
|
| - << " Actual:" << testing::PrintToString(n) << std::endl
|
| + << " Actual:" << ::testing::PrintToString(n) << std::endl
|
| << "Expected Approx:" << expr << std::endl
|
| << " Which is:" << ::testing::PrintToString(m);
|
| }
|
| @@ -70,7 +70,7 @@ bool ApproximatelyEqual(const FloatBox& a, const FloatBox& b) {
|
| if (!ApproximatelyEqual(m, new_m)) {
|
| return ::testing::AssertionFailure()
|
| << " Value of:" << n_expr << std::endl
|
| - << " Actual:" << testing::PrintToString(n) << std::endl
|
| + << " Actual:" << ::testing::PrintToString(n) << std::endl
|
| << "Not Contained in:" << expr << std::endl
|
| << " Which is:" << ::testing::PrintToString(m);
|
| }
|
|
|