| Index: mojo/edk/system/remote_data_pipe_impl_unittest.cc
|
| diff --git a/mojo/edk/system/remote_data_pipe_impl_unittest.cc b/mojo/edk/system/remote_data_pipe_impl_unittest.cc
|
| index 7efd40a89d8e1beb1a0cefa31803f409a19be356..40d2f6fdb0537e8a53d06be86b4c27a728d80671 100644
|
| --- a/mojo/edk/system/remote_data_pipe_impl_unittest.cc
|
| +++ b/mojo/edk/system/remote_data_pipe_impl_unittest.cc
|
| @@ -226,7 +226,8 @@ TEST_F(RemoteDataPipeImplTest, SendConsumerWithClosedProducer) {
|
| ASSERT_TRUE(read_dispatchers[0]);
|
| EXPECT_TRUE(read_dispatchers[0]->HasOneRef());
|
|
|
| - EXPECT_EQ(Dispatcher::kTypeDataPipeConsumer, read_dispatchers[0]->GetType());
|
| + EXPECT_EQ(Dispatcher::Type::DATA_PIPE_CONSUMER,
|
| + read_dispatchers[0]->GetType());
|
| consumer =
|
| static_cast<DataPipeConsumerDispatcher*>(read_dispatchers[0].get());
|
| read_dispatchers.clear();
|
|
|