Index: chrome/common/extensions/manifest_handlers/automation_unittest.cc |
diff --git a/chrome/common/extensions/manifest_handlers/automation_unittest.cc b/chrome/common/extensions/manifest_handlers/automation_unittest.cc |
index 3c4f32ed35082a740a811b0ee2cc4bdfb78e6d06..0da448ff6c0a25daaa088b82673d5278033697fe 100644 |
--- a/chrome/common/extensions/manifest_handlers/automation_unittest.cc |
+++ b/chrome/common/extensions/manifest_handlers/automation_unittest.cc |
@@ -50,7 +50,7 @@ TEST_F(AutomationManifestTest, AsBooleanTrue) { |
std::vector<base::string16> warnings = |
extension->permissions_data()->GetPermissionMessageStrings(); |
ASSERT_EQ(1u, warnings.size()); |
- EXPECT_EQ("Read and modify your data on www.google.com", |
+ EXPECT_EQ("Read and change your data on www.google.com", |
base::UTF16ToUTF8(warnings[0])); |
const AutomationInfo* info = AutomationInfo::Get(extension.get()); |
@@ -69,7 +69,7 @@ TEST_F(AutomationManifestTest, InteractTrue) { |
std::vector<base::string16> warnings = |
extension->permissions_data()->GetPermissionMessageStrings(); |
ASSERT_EQ(1u, warnings.size()); |
- EXPECT_EQ("Read and modify your data on www.google.com", |
+ EXPECT_EQ("Read and change your data on www.google.com", |
base::UTF16ToUTF8(warnings[0])); |
const AutomationInfo* info = AutomationInfo::Get(extension.get()); |
@@ -93,7 +93,7 @@ TEST_F(AutomationManifestTest, Matches) { |
std::vector<base::string16> warnings = |
extension->permissions_data()->GetPermissionMessageStrings(); |
ASSERT_EQ(1u, warnings.size()); |
- EXPECT_EQ("Read and modify your data on www.google.com and www.twitter.com", |
+ EXPECT_EQ("Read and change your data on www.google.com and www.twitter.com", |
base::UTF16ToUTF8(warnings[0])); |
const AutomationInfo* info = AutomationInfo::Get(extension.get()); |
@@ -120,9 +120,9 @@ TEST_F(AutomationManifestTest, MatchesAndPermissions) { |
std::vector<base::string16> warnings = |
extension->permissions_data()->GetPermissionMessageStrings(); |
ASSERT_EQ(2u, warnings.size()); |
- EXPECT_EQ("Read and modify your data on www.google.com", |
+ EXPECT_EQ("Read and change your data on www.google.com", |
base::UTF16ToUTF8(warnings[0])); |
- EXPECT_EQ("Read and modify your data on www.twitter.com", |
+ EXPECT_EQ("Read and change your data on www.twitter.com", |
base::UTF16ToUTF8(warnings[1])); |
const AutomationInfo* info = AutomationInfo::Get(extension.get()); |
@@ -190,7 +190,7 @@ TEST_F(AutomationManifestTest, DesktopFalse) { |
std::vector<base::string16> warnings = |
extension->permissions_data()->GetPermissionMessageStrings(); |
ASSERT_EQ(1u, warnings.size()); |
- EXPECT_EQ("Read and modify your data on www.google.com", |
+ EXPECT_EQ("Read and change your data on www.google.com", |
base::UTF16ToUTF8(warnings[0])); |
const AutomationInfo* info = AutomationInfo::Get(extension.get()); |