diff options
author | nirnimesh@chromium.org <nirnimesh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-29 00:53:23 +0000 |
---|---|---|
committer | nirnimesh@chromium.org <nirnimesh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-29 00:53:23 +0000 |
commit | ca983deb2813e9e7557ae7985f1a9efa057f8298 (patch) | |
tree | e7910b32df119b5e05ec59f67533c9717d6f6a7a /chrome | |
parent | 35a9e196778a2b95347cb6d5f5c9eee4c674dcee (diff) | |
download | chromium_src-ca983deb2813e9e7557ae7985f1a9efa057f8298.zip chromium_src-ca983deb2813e9e7557ae7985f1a9efa057f8298.tar.gz chromium_src-ca983deb2813e9e7557ae7985f1a9efa057f8298.tar.bz2 |
Get rid of an obsolete test for page options pref
Page options button pref has been removed. Remove the test.
Review URL: http://codereview.chromium.org/2810036
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51080 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/test/functional/prefs.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/chrome/test/functional/prefs.py b/chrome/test/functional/prefs.py index c49a197..d404d2e 100644 --- a/chrome/test/functional/prefs.py +++ b/chrome/test/functional/prefs.py @@ -111,14 +111,8 @@ class PrefsTest(pyauto.PyUITest): # Assert defaults first self.assertFalse(self.GetPrefsInfo().Prefs(pyauto.kShowHomeButton)) self.SetPrefs(pyauto.kShowHomeButton, True) - if self.IsMac(): # win/linux don't have the - self.assertFalse( # "browser.show_page_options_buttons" pref - self.GetPrefsInfo().Prefs(pyauto.kShowPageOptionsButtons)) - self.SetPrefs(pyauto.kShowPageOptionsButtons, True) self.RestartBrowser(clear_profile=False) self.assertTrue(self.GetPrefsInfo().Prefs(pyauto.kShowHomeButton)) - if self.IsMac(): - self.assertTrue(self.GetPrefsInfo().Prefs(pyauto.kShowPageOptionsButtons)) def testHomepagePrefs(self): """Verify homepage prefs.""" |