Index: chrome/browser/cocoa/content_exceptions_window_controller_unittest.mm |
diff --git a/chrome/browser/cocoa/content_exceptions_window_controller_unittest.mm b/chrome/browser/cocoa/content_exceptions_window_controller_unittest.mm |
index 730a0453bc4402cf76919ed70f04ba914ba2664a..2c842b5c69eb23dbb475e2a0243dbaf7b18d4b47 100644 |
--- a/chrome/browser/cocoa/content_exceptions_window_controller_unittest.mm |
+++ b/chrome/browser/cocoa/content_exceptions_window_controller_unittest.mm |
@@ -220,7 +220,7 @@ TEST_F(ContentExceptionsWindowControllerTest, AddExistingEditAdd) { |
TEST_F(ContentExceptionsWindowControllerTest, AddExistingDoesNotOverwrite) { |
settingsMap_->SetContentSetting(HostContentSettingsMap::Pattern("myhost"), |
CONTENT_SETTINGS_TYPE_COOKIES, |
- CONTENT_SETTING_ASK); |
+ CONTENT_SETTING_SESSION_ONLY); |
ContentExceptionsWindowController* controller = |
GetController(CONTENT_SETTINGS_TYPE_COOKIES); |
@@ -235,7 +235,7 @@ TEST_F(ContentExceptionsWindowControllerTest, AddExistingDoesNotOverwrite) { |
settingsMap_->GetSettingsForOneType(CONTENT_SETTINGS_TYPE_COOKIES, |
&settings); |
EXPECT_EQ(1u, settings.size()); |
- EXPECT_EQ(CONTENT_SETTING_ASK, settings[0].second); |
+ EXPECT_EQ(CONTENT_SETTING_SESSION_ONLY, settings[0].second); |
} |