diff options
author | pneubeck@chromium.org <pneubeck@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-14 07:29:06 +0000 |
---|---|---|
committer | pneubeck@chromium.org <pneubeck@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-14 07:29:06 +0000 |
commit | 3b43761cdbfe9d6bd1f69ffc8c2d272a5fb10637 (patch) | |
tree | 382f0bd51fcc1ad008f6ab29ca2407de482bb772 /chrome/test/pyautolib | |
parent | e198683d045842e9da6cd5ce53b4f3c690ad2070 (diff) | |
download | chromium_src-3b43761cdbfe9d6bd1f69ffc8c2d272a5fb10637.zip chromium_src-3b43761cdbfe9d6bd1f69ffc8c2d272a5fb10637.tar.gz chromium_src-3b43761cdbfe9d6bd1f69ffc8c2d272a5fb10637.tar.bz2 |
Remove unused ca_cert_nss_nickname from automation.
Removing this dependency eases the upcoming migration from certificate references by GUIDs to fingerprints.
BUG=208986, 248864
Review URL: https://chromiumcodereview.appspot.com/16962004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@206355 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/pyautolib')
-rwxr-xr-x | chrome/test/pyautolib/pyauto.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/chrome/test/pyautolib/pyauto.py b/chrome/test/pyautolib/pyauto.py index a0fa464..9ca0a4ae 100755 --- a/chrome/test/pyautolib/pyauto.py +++ b/chrome/test/pyautolib/pyauto.py @@ -4938,7 +4938,6 @@ class PyUITest(pyautolib.PyUITestBase, unittest.TestCase): provider_type, username, password, - cert_nss='', cert_id='', key=''): """Add and connect to a private network. @@ -4956,7 +4955,6 @@ class PyUITest(pyautolib.PyUITestBase, unittest.TestCase): also work. username: Username for connecting to the virtual network. password: Passphrase for connecting to the virtual network. - cert_nss: Certificate nss nickname for a L2TP_IPSEC_USER_CERT network. cert_id: Certificate id for a L2TP_IPSEC_USER_CERT network. key: Pre-shared key for a L2TP_IPSEC_PSK network. @@ -4974,7 +4972,6 @@ class PyUITest(pyautolib.PyUITestBase, unittest.TestCase): 'provider_type': provider_type, 'username': username, 'password': password, - 'cert_nss': cert_nss, 'cert_id': cert_id, 'key': key, } |