Remove duplicated register_opts call

We have registered all config options in method setUp of
ServiceBaseTestCase, don't need repeat them again in subclass.

Change-Id: Iad4452dc3e7d353a7e963547aee3a356afdf5ad5
This commit is contained in:
ChangBo Guo(gcb) 2017-01-28 22:08:25 +08:00
parent 7fa34bf8e7
commit 4ca23440a1
1 changed files with 0 additions and 4 deletions

View File

@ -30,7 +30,6 @@ import requests
import webob
from oslo_config import cfg
from oslo_service import _options
from oslo_service import sslutils
from oslo_service.tests import base
from oslo_service import wsgi
@ -49,7 +48,6 @@ class WsgiTestCase(base.ServiceBaseTestCase):
def setUp(self):
super(WsgiTestCase, self).setUp()
self.conf_fixture.register_opts(_options.wsgi_opts)
self.conf(args=[], default_config_files=[])
@ -273,8 +271,6 @@ class TestWSGIServerWithSSL(WsgiTestCase):
def setUp(self):
super(TestWSGIServerWithSSL, self).setUp()
self.conf_fixture.register_opts(_options.ssl_opts,
sslutils.config_section)
cert_file_name = os.path.join(SSL_CERT_DIR, 'certificate.crt')
key_file_name = os.path.join(SSL_CERT_DIR, 'privatekey.key')
eventlet.monkey_patch(os=False, thread=False)