| Index: third_party/WebKit/Source/core/xml/XPathFunctionsTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/xml/XPathFunctionsTest.cpp b/third_party/WebKit/Source/core/xml/XPathFunctionsTest.cpp
|
| index ef59c278ee736733b35a685ca94b6d7446514c2f..35a99e224f644b01411d2984d0d1f29729bd6a84 100644
|
| --- a/third_party/WebKit/Source/core/xml/XPathFunctionsTest.cpp
|
| +++ b/third_party/WebKit/Source/core/xml/XPathFunctionsTest.cpp
|
| @@ -83,8 +83,9 @@ TEST(XPathFunctionsTest, substring_specExamples) {
|
| substring("12345", -42, std::numeric_limits<double>::infinity()))
|
| << "should select characters at -42 <= position < Infinity, which is all "
|
| "of them";
|
| - EXPECT_EQ("", substring("12345", -std::numeric_limits<double>::infinity(),
|
| - std::numeric_limits<double>::infinity()))
|
| + EXPECT_EQ("",
|
| + substring("12345", -std::numeric_limits<double>::infinity(),
|
| + std::numeric_limits<double>::infinity()))
|
| << "since -Inf+Inf is NaN, should select no characters since position "
|
| "< NaN is always false";
|
| }
|
|
|