| 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);
|
| }
|
|
|
|
|