| Index: third_party/WebKit/Source/platform/WebVectorTest.cpp
|
| diff --git a/third_party/WebKit/Source/platform/WebVectorTest.cpp b/third_party/WebKit/Source/platform/WebVectorTest.cpp
|
| index c26d1507a5bdf50df75426981fb92418b78bec71..b094db090c9f80f3cfa4371f8a01aaa88f0dd389 100644
|
| --- a/third_party/WebKit/Source/platform/WebVectorTest.cpp
|
| +++ b/third_party/WebKit/Source/platform/WebVectorTest.cpp
|
| @@ -49,11 +49,11 @@ TEST(WebVectorTest, Iterators) {
|
|
|
| TEST(WebVectorTest, IsEmpty) {
|
| WebVector<int> vector;
|
| - ASSERT_TRUE(vector.isEmpty());
|
| + ASSERT_TRUE(vector.empty());
|
| int value = 1;
|
| vector.assign(&value, 1);
|
| ASSERT_EQ(1u, vector.size());
|
| - ASSERT_FALSE(vector.isEmpty());
|
| + ASSERT_FALSE(vector.empty());
|
| }
|
|
|
| TEST(WebVectorTest, Swap) {
|
|
|