diff options
author | dennisjeffrey@chromium.org <dennisjeffrey@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-26 17:14:14 +0000 |
---|---|---|
committer | dennisjeffrey@chromium.org <dennisjeffrey@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-26 17:14:14 +0000 |
commit | 364d4fdc988b0706551acb574c1bdb1df800b6a1 (patch) | |
tree | 4a3afdad4d543f52bdeaa4584f77a31fea8a4d2d /chrome/test/functional/themes.py | |
parent | e988ffd3c55d2d4369b1625ab2ed6f3b9ce38877 (diff) | |
download | chromium_src-364d4fdc988b0706551acb574c1bdb1df800b6a1.zip chromium_src-364d4fdc988b0706551acb574c1bdb1df800b6a1.tar.gz chromium_src-364d4fdc988b0706551acb574c1bdb1df800b6a1.tar.bz2 |
Refactor pyauto tests to use pprint() and pformat() from pyauto.py.
Also added a Debug() function to process_count.py.
BUG=97663
TEST=None
Review URL: http://codereview.chromium.org/8037007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102747 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/functional/themes.py')
-rw-r--r-- | chrome/test/functional/themes.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/chrome/test/functional/themes.py b/chrome/test/functional/themes.py index 298eec6..b718949 100644 --- a/chrome/test/functional/themes.py +++ b/chrome/test/functional/themes.py @@ -19,11 +19,9 @@ class ThemesTest(pyauto.PyUITest): This method will not run automatically. """ - import pprint - pp = pprint.PrettyPrinter(indent=2) while True: raw_input('Hit <enter> to dump info.. ') - pp.pprint(self.GetThemeInfo()) + self.pprint(self.GetThemeInfo()) def testSetTheme(self): """Verify theme install.""" |