diff options
author | nirnimesh@chromium.org <nirnimesh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-26 18:54:41 +0000 |
---|---|---|
committer | nirnimesh@chromium.org <nirnimesh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-26 18:54:41 +0000 |
commit | f4d92d437ea14ea3a02e95ec837dc6872ca6b183 (patch) | |
tree | 2d0f781e75837659bc17ec49ffbd2eccce444d9d | |
parent | c39a948bcd2100ee4df4550f970722d3f2e5a7d5 (diff) | |
download | chromium_src-f4d92d437ea14ea3a02e95ec837dc6872ca6b183.zip chromium_src-f4d92d437ea14ea3a02e95ec837dc6872ca6b183.tar.gz chromium_src-f4d92d437ea14ea3a02e95ec837dc6872ca6b183.tar.bz2 |
Fix special_tabs.SpecialTabsTest.testSpecialAcceratorTabs on win
TBR=dennisjeffrey@chromium.org
R=dennisjeffrey@chromium.org
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/8341071
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@107402 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/test/functional/special_tabs.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/test/functional/special_tabs.py b/chrome/test/functional/special_tabs.py index ee4bbbb5..735e2fb 100644 --- a/chrome/test/functional/special_tabs.py +++ b/chrome/test/functional/special_tabs.py @@ -15,7 +15,8 @@ class SpecialTabsTest(pyauto.PyUITest): special_accelerator_tabs = { pyauto.IDC_SHOW_HISTORY: 'History', - pyauto.IDC_MANAGE_EXTENSIONS: 'Preferences - Extensions', + pyauto.IDC_MANAGE_EXTENSIONS: '%s - Extensions' % ('Options' if + pyauto.PyUITest.IsWin() else 'Preferences'), pyauto.IDC_SHOW_DOWNLOADS: 'Downloads', } @@ -153,6 +154,7 @@ class SpecialTabsTest(pyauto.PyUITest): # OVERRIDE - different title for page. 'chrome://settings': { 'title': 'Options - Basics' }, + 'chrome://settings/extensions': { 'title': 'Options - Extensions' }, } broken_win_special_url_tabs = { # Sync on windows badly broken at the moment. |