diff options
author | nirnimesh@chromium.org <nirnimesh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-03 18:25:08 +0000 |
---|---|---|
committer | nirnimesh@chromium.org <nirnimesh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-03 18:25:08 +0000 |
commit | 0ba39a61f46b306ffca001cfa23546b7d590d678 (patch) | |
tree | 947ec8efcb32565b16f55e55d06c1bc77ff590d6 /chrome | |
parent | 83719972b04fa451e28eda7a09f1a62c7c97fc1d (diff) | |
download | chromium_src-0ba39a61f46b306ffca001cfa23546b7d590d678.zip chromium_src-0ba39a61f46b306ffca001cfa23546b7d590d678.tar.gz chromium_src-0ba39a61f46b306ffca001cfa23546b7d590d678.tar.bz2 |
Functions not intended as tests should not begin with 'test'
BUG=
TEST=
Review URL: http://codereview.chromium.org/6597028
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76766 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/test/functional/PYAUTO_TESTS | 6 | ||||
-rw-r--r-- | chrome/test/functional/autofill.py | 4 |
2 files changed, 2 insertions, 8 deletions
diff --git a/chrome/test/functional/PYAUTO_TESTS b/chrome/test/functional/PYAUTO_TESTS index 7b5e58e..c59124a 100644 --- a/chrome/test/functional/PYAUTO_TESTS +++ b/chrome/test/functional/PYAUTO_TESTS @@ -27,12 +27,6 @@ 'CONTINUOUS': { 'all': [ 'autofill', - # Not part of the continous build. - # Used for testing Autofill crowdsourcing. - '-autofill.AutoFillTest.testAutofillCrowdsourcing', - # Not part of the continous build. - # Used for testing Autofill duplicate profile merging. - '-autofill.AutoFillTest.testMergeDuplicateProfilesInAutofill', # crbug.com/73439 '-autofill.AutoFillTest.testFilterMalformedEmailAddresses', 'bookmark_bar', diff --git a/chrome/test/functional/autofill.py b/chrome/test/functional/autofill.py index eba9923..3fc591d 100644 --- a/chrome/test/functional/autofill.py +++ b/chrome/test/functional/autofill.py @@ -147,7 +147,7 @@ class AutoFillTest(pyauto.PyUITest): if 'EMAIL_ADDRESS' in self.GetAutoFillProfile()['profiles'][0]: raise KeyError('TEST FAIL: Malformed email address is saved in profiles.') - def testAutofillCrowdsourcing(self): + def AutofillCrowdsourcing(self): """Test able to send POST request of web form to Autofill server. The Autofill server processes the data offline, so it can take a few days @@ -183,7 +183,7 @@ class AutoFillTest(pyauto.PyUITest): 'window.domAutomationController.send("done");', 0, 0) - def testMergeDuplicateProfilesInAutofill(self): + def MergeDuplicateProfilesInAutofill(self): """Test Autofill ability to merge duplicate profiles and throw away junk.""" # HTML file needs to be run from a http:// url. url = self.GetHttpURLForDataPath( |