summaryrefslogtreecommitdiffstats
path: root/chrome/test
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/test')
-rw-r--r--chrome/test/functional/PYAUTO_TESTS2
-rw-r--r--chrome/test/functional/omnibox.py3
2 files changed, 1 insertions, 4 deletions
diff --git a/chrome/test/functional/PYAUTO_TESTS b/chrome/test/functional/PYAUTO_TESTS
index d5b1b90..ae9dcdd 100644
--- a/chrome/test/functional/PYAUTO_TESTS
+++ b/chrome/test/functional/PYAUTO_TESTS
@@ -81,8 +81,6 @@
# Unsafe downloads tests broken. crbug.com/66081
'-downloads.DownloadsTest.testDeclineDangerousDownload',
'-downloads.DownloadsTest.testNoUnsafeDownloadsOnRestart',
- # crbug.com/66448
- '-omnibox.OmniboxTest.testBookmarkResultInNewTabAndWindow',
'-prefs.PrefsTest.testDownloadDirPref',
# crbug.com/64269
'-passwords.PasswordTest.testDisplayAndSavePasswordInfobar',
diff --git a/chrome/test/functional/omnibox.py b/chrome/test/functional/omnibox.py
index ef73848..8a7a2e2 100644
--- a/chrome/test/functional/omnibox.py
+++ b/chrome/test/functional/omnibox.py
@@ -224,8 +224,7 @@ class OmniboxTest(pyauto.PyUITest):
self._VerifyHasBookmarkResult(title_matches)
# Check if the partial URL would get the bookmark
split_url = urlparse.urlsplit(url)
- search_term = split_url.path
- partial_url = self._GetOmniboxMatchesFor(search_term, windex=windex)
+ partial_url = self._GetOmniboxMatchesFor(split_url.scheme, windex=windex)
self._VerifyHasBookmarkResult(partial_url)
# Check if the partial title would get the bookmark
split_title = title.split()