Merge "Remove unused LOG and CONF"

This commit is contained in:
Jenkins 2016-09-01 10:55:58 +00:00 committed by Gerrit Code Review
commit 99f5640d94
3 changed files with 0 additions and 11 deletions

View File

@ -15,7 +15,6 @@
DRAC Driver for remote system management using Dell Remote Access Card.
"""
from oslo_log import log as logging
from oslo_utils import importutils
from ironic.common import exception
@ -32,9 +31,6 @@ from ironic.drivers.modules import pxe
from ironic.drivers import utils
LOG = logging.getLogger(__name__)
class PXEDracDriver(base.BaseDriver):
"""DRAC driver using PXE for deploy."""

View File

@ -15,13 +15,10 @@
from oslo_log import log as logging
from tempest.common import waiters
from tempest import config
from tempest import test
from ironic_tempest_plugin.tests.scenario import baremetal_manager
CONF = config.CONF
LOG = logging.getLogger(__name__)

View File

@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
from oslo_log import log as logging
from ironic_tempest_plugin.tests.scenario import baremetal_manager
from tempest import config
from tempest.lib.common.utils import data_utils
@ -23,8 +21,6 @@ from tempest import test
CONF = config.CONF
LOG = logging.getLogger(__name__)
class BaremetalMultitenancy(baremetal_manager.BaremetalScenarioTest,
manager.NetworkScenarioTest):