Index: chrome/browser/component_updater/subresource_filter_component_installer_unittest.cc |
diff --git a/chrome/browser/component_updater/subresource_filter_component_installer_unittest.cc b/chrome/browser/component_updater/subresource_filter_component_installer_unittest.cc |
index c740f9aff78dfa338653365b968d1506dbee02b9..0df80356f12e619fc0ac6dac32733ef7fdecb9b5 100644 |
--- a/chrome/browser/component_updater/subresource_filter_component_installer_unittest.cc |
+++ b/chrome/browser/component_updater/subresource_filter_component_installer_unittest.cc |
@@ -163,7 +163,8 @@ TEST_F(SubresourceFilterComponentInstallerTest, |
base::FieldTrialList field_trial_list(nullptr); |
subresource_filter::testing::ScopedSubresourceFilterFeatureToggle |
scoped_feature_toggle(base::FeatureList::OVERRIDE_DISABLE_FEATURE, |
- subresource_filter::kActivationStateEnabled); |
+ subresource_filter::kActivationStateEnabled, |
+ subresource_filter::kActivationScopeDisabled); |
std::unique_ptr<SubresourceFilterMockComponentUpdateService> |
component_updater(new SubresourceFilterMockComponentUpdateService()); |
EXPECT_CALL(*component_updater, RegisterComponent(testing::_)).Times(0); |
@@ -176,7 +177,8 @@ TEST_F(SubresourceFilterComponentInstallerTest, |
base::FieldTrialList field_trial_list(nullptr); |
subresource_filter::testing::ScopedSubresourceFilterFeatureToggle |
scoped_feature_toggle(base::FeatureList::OVERRIDE_ENABLE_FEATURE, |
- subresource_filter::kActivationStateDisabled); |
+ subresource_filter::kActivationStateDisabled, |
+ subresource_filter::kActivationScopeDisabled); |
std::unique_ptr<SubresourceFilterMockComponentUpdateService> |
component_updater(new SubresourceFilterMockComponentUpdateService()); |
EXPECT_CALL(*component_updater, RegisterComponent(testing::_)).Times(1); |