diff options
author | sunandt@google.com <sunandt@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-05 17:46:00 +0000 |
---|---|---|
committer | sunandt@google.com <sunandt@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-05 17:46:00 +0000 |
commit | c4a47f0590c3d12038d8328b43fd34e71cbb6975 (patch) | |
tree | daebec5c737958f0519c3f8d0cfb01eff6e60b18 /chrome/test/functional | |
parent | f75aefd69a4a677566b160aa11083e2de12df434 (diff) | |
download | chromium_src-c4a47f0590c3d12038d8328b43fd34e71cbb6975.zip chromium_src-c4a47f0590c3d12038d8328b43fd34e71cbb6975.tar.gz chromium_src-c4a47f0590c3d12038d8328b43fd34e71cbb6975.tar.bz2 |
Correcting a TypeError in popups pyauto test.
BUG=70659
TEST=none
Review URL: http://codereview.chromium.org/6735061
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80484 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/functional')
-rw-r--r-- | chrome/test/functional/popups.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/test/functional/popups.py b/chrome/test/functional/popups.py index f2570b1..c1449d85 100644 --- a/chrome/test/functional/popups.py +++ b/chrome/test/functional/popups.py @@ -73,7 +73,7 @@ class PopupsTest(pyauto.PyUITest): while attempts < 3: if self.GetActiveTabTitle(window_index=1) != \ 'Popup created using window.open': - logging.debug('Attempt %s' % attempts+1) + logging.debug('Attempt %d' % attempts + 1) self.NavigateToURL(file_url, 1, 0) attempts = attempts + 1 else: |