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

Unified Diff: components/feature_engagement_tracker/internal/feature_config_condition_validator_unittest.cc

Issue 2911123003: Metrics for feature engagement tracker. (Closed)
Patch Set: Created 3 years, 7 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: components/feature_engagement_tracker/internal/feature_config_condition_validator_unittest.cc
diff --git a/components/feature_engagement_tracker/internal/feature_config_condition_validator_unittest.cc b/components/feature_engagement_tracker/internal/feature_config_condition_validator_unittest.cc
index b7d30874d89907e1b39f55e496009a0c1d55f650..3853f39f5b9e650c8d8e11aa2425a6dfd4ca51e9 100644
--- a/components/feature_engagement_tracker/internal/feature_config_condition_validator_unittest.cc
+++ b/components/feature_engagement_tracker/internal/feature_config_condition_validator_unittest.cc
@@ -150,7 +150,7 @@ TEST_F(FeatureConfigConditionValidatorTest, ModelNotReadyShouldFail) {
ConditionValidator::Result result =
GetResultForDayZero(GetValidFeatureConfig());
EXPECT_FALSE(result.NoErrors());
- EXPECT_FALSE(result.model_ready_ok);
+ EXPECT_FALSE(result.event_model_ready_ok);
}
TEST_F(FeatureConfigConditionValidatorTest, ConfigInvalidShouldFail) {
@@ -170,7 +170,7 @@ TEST_F(FeatureConfigConditionValidatorTest, MultipleErrorsShouldBeSet) {
ConditionValidator::Result result = GetResultForDayZero(FeatureConfig());
EXPECT_FALSE(result.NoErrors());
- EXPECT_FALSE(result.model_ready_ok);
+ EXPECT_FALSE(result.event_model_ready_ok);
EXPECT_FALSE(result.config_ok);
}

Powered by Google App Engine
This is Rietveld 408576698