| Index: chrome/installer/util/experiment_storage_unittest.cc
|
| diff --git a/chrome/installer/util/experiment_storage_unittest.cc b/chrome/installer/util/experiment_storage_unittest.cc
|
| index 5f4d2d3a57235a9dbaef81b73d16814e0485d615..d8888b82f00a27f5551c124e7f69dddad35f0603 100644
|
| --- a/chrome/installer/util/experiment_storage_unittest.cc
|
| +++ b/chrome/installer/util/experiment_storage_unittest.cc
|
| @@ -124,10 +124,9 @@ TEST_P(ExperimentStorageTest, TestEncodeDecodeForMin) {
|
|
|
| TEST_P(ExperimentStorageTest, TestReadWriteParticipation) {
|
| ExperimentStorage storage;
|
| - ExperimentStorage::Participation expected =
|
| - ExperimentStorage::Participation::kIsParticipating;
|
| + ExperimentStorage::Study expected = ExperimentStorage::kStudyOne;
|
| ASSERT_TRUE(storage.AcquireLock()->WriteParticipation(expected));
|
| - ExperimentStorage::Participation p;
|
| + ExperimentStorage::Study p;
|
| ASSERT_TRUE(storage.AcquireLock()->ReadParticipation(&p));
|
| EXPECT_EQ(expected, p);
|
| }
|
|
|