diff options
author | nirnimesh@chromium.org <nirnimesh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-01 06:19:38 +0000 |
---|---|---|
committer | nirnimesh@chromium.org <nirnimesh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-01 06:19:38 +0000 |
commit | 0e3c7d88f2fd4070e0b373e97ce400e522d15245 (patch) | |
tree | 6ab656b706fc6b8ba31fe3115ed9f858fcf4049e /chrome/test | |
parent | 925136821950cb844c98dcfa88c7807e8708746e (diff) | |
download | chromium_src-0e3c7d88f2fd4070e0b373e97ce400e522d15245.zip chromium_src-0e3c7d88f2fd4070e0b373e97ce400e522d15245.tar.gz chromium_src-0e3c7d88f2fd4070e0b373e97ce400e522d15245.tar.bz2 |
Add trailing periods to some expected text
These strings were updated in r99054
TBR=gideonwald@chromium.org
BUG=
TEST=
Review URL: http://codereview.chromium.org/7826005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99141 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test')
-rw-r--r-- | chrome/test/functional/infobars.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/test/functional/infobars.py b/chrome/test/functional/infobars.py index ed55e17..1f9f3ce 100644 --- a/chrome/test/functional/infobars.py +++ b/chrome/test/functional/infobars.py @@ -89,7 +89,7 @@ class InfobarTest(pyauto.PyUITest): """Verify geoLocation infobar.""" url = self.GetFileURLForDataPath( # triggers geolocation 'geolocation', 'geolocation_on_load.html') - match_text='file:/// wants to track your physical location' + match_text='file:/// wants to track your physical location.' self.NavigateToURL(url) self.assertTrue(self.WaitForInfobarCount(1)) self._VerifyGeolocationInfobar(windex=0, tab_index=0, match_text=match_text) @@ -101,7 +101,7 @@ class InfobarTest(pyauto.PyUITest): """Verify GeoLocation inforbar in multiple tabs.""" url = self.GetFileURLForDataPath( # triggers geolocation 'geolocation', 'geolocation_on_load.html') - match_text='file:/// wants to track your physical location' + match_text='file:/// wants to track your physical location.' for tab_index in range(1, 2): self.AppendTab(pyauto.GURL(url)) self.assertTrue( |