Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(808)

Unified Diff: chrome/installer/util/experiment_storage_unittest.cc

Issue 2933043002: Installer support for Windows 10 inactive user toast. (Closed)
Patch Set: two studies Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 9b0535282b2d50a92e305767f69aa06684e7f4c4..bd637d5dc1294c92cb16f59de2df5c65ba62e836 100644
--- a/chrome/installer/util/experiment_storage_unittest.cc
+++ b/chrome/installer/util/experiment_storage_unittest.cc
@@ -121,10 +121,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);
}

Powered by Google App Engine
This is Rietveld 408576698