| Index: components/gcm_driver/gcm_stats_recorder_impl_unittest.cc
|
| diff --git a/components/gcm_driver/gcm_stats_recorder_impl_unittest.cc b/components/gcm_driver/gcm_stats_recorder_impl_unittest.cc
|
| index 1223f6724f1ac8a1b5c1f6ba73b0f1cec718c114..e45ab59f2e4fb5797c5c56b4ef5bdc02fb6c51a6 100644
|
| --- a/components/gcm_driver/gcm_stats_recorder_impl_unittest.cc
|
| +++ b/components/gcm_driver/gcm_stats_recorder_impl_unittest.cc
|
| @@ -338,7 +338,7 @@ class GCMStatsRecorderImplTest : public testing::Test {
|
| EXPECT_EQ(details, queue.front().details) << remark;
|
| }
|
|
|
| - std::vector<std::string> sender_ids_;
|
| + std::string sender_ids_;
|
| GCMStatsRecorderImpl recorder_;
|
| };
|
|
|
| @@ -348,8 +348,7 @@ GCMStatsRecorderImplTest::GCMStatsRecorderImplTest(){
|
| GCMStatsRecorderImplTest::~GCMStatsRecorderImplTest() {}
|
|
|
| void GCMStatsRecorderImplTest::SetUp(){
|
| - sender_ids_.push_back("s1");
|
| - sender_ids_.push_back("s2");
|
| + sender_ids_ = "s1,s2";
|
| recorder_.SetRecording(true);
|
| }
|
|
|
|
|