| Index: third_party/WebKit/Source/core/dom/AttrTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/AttrTest.cpp b/third_party/WebKit/Source/core/dom/AttrTest.cpp
|
| index c86b5232e0b8ac96f391d8b4c2711f14bac1837b..03b115a6082a34ff59ef21b67446dab7ceb5c723 100644
|
| --- a/third_party/WebKit/Source/core/dom/AttrTest.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/AttrTest.cpp
|
| @@ -34,8 +34,8 @@ Attr* AttrTest::createAttribute() {
|
| TEST_F(AttrTest, InitialValueState) {
|
| Attr* attr = createAttribute();
|
| EXPECT_EQ(emptyAtom, attr->value());
|
| - EXPECT_EQ(emptyString(), attr->toNode()->nodeValue());
|
| - EXPECT_EQ(emptyString(), attr->textContent());
|
| + EXPECT_EQ(emptyString, attr->toNode()->nodeValue());
|
| + EXPECT_EQ(emptyString, attr->textContent());
|
| }
|
|
|
| TEST_F(AttrTest, SetValue) {
|
|
|