| Index: mojo/public/cpp/bindings/tests/wtf_map_unittest.cc
|
| diff --git a/mojo/public/cpp/bindings/tests/wtf_map_unittest.cc b/mojo/public/cpp/bindings/tests/wtf_map_unittest.cc
|
| index 5028087fedc7c3e855c2b552306d2e383b4c7f2c..dc40143168f62646fb14a1fac3d36a810c2a39b3 100644
|
| --- a/mojo/public/cpp/bindings/tests/wtf_map_unittest.cc
|
| +++ b/mojo/public/cpp/bindings/tests/wtf_map_unittest.cc
|
| @@ -19,7 +19,7 @@ TEST(WTFMapTest, StructKey) {
|
| ASSERT_NE(map.end(), map.find(key));
|
| ASSERT_EQ(123, map.find(key)->value);
|
|
|
| - map.remove(key);
|
| + map.erase(key);
|
| ASSERT_EQ(0u, map.size());
|
| }
|
|
|
| @@ -32,7 +32,7 @@ TEST(WTFMapTest, TypemappedStructKey) {
|
| ASSERT_NE(map.end(), map.find(key));
|
| ASSERT_EQ(123, map.find(key)->value);
|
|
|
| - map.remove(key);
|
| + map.erase(key);
|
| ASSERT_EQ(0u, map.size());
|
| }
|
|
|
|
|