summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2014-12-04 15:33:49 +0000
committerGerrit Code Review <review@openstack.org>2014-12-04 15:33:49 +0000
commit3baa1ec31f575d922483866eabd5302d4945e4cb (patch)
tree845a933f7d1aee09c211f15f1b082770979797a2
parent4fd64cba10f6315d49d76b5202da935d1b7bf182 (diff)
parent09ab85306cce171b27169e95a46d46926c14bcf0 (diff)
downloadoslo-concurrency-3baa1ec31f575d922483866eabd5302d4945e4cb.tar.gz
Merge "Remove noqa from test files"
-rw-r--r--tests/test_lockutils.py4
-rw-r--r--tests/test_processutils.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_lockutils.py b/tests/test_lockutils.py
index 1788be2..22bb041 100644
--- a/tests/test_lockutils.py
+++ b/tests/test_lockutils.py
@@ -28,8 +28,8 @@ from oslo.config import cfg
from oslotest import base as test_base
import six
-from oslo.concurrency.fixture import lockutils as fixtures # noqa
-from oslo.concurrency import lockutils # noqa
+from oslo.concurrency.fixture import lockutils as fixtures
+from oslo.concurrency import lockutils
from oslo.config import fixture as config
diff --git a/tests/test_processutils.py b/tests/test_processutils.py
index ce07e72..179a5e3 100644
--- a/tests/test_processutils.py
+++ b/tests/test_processutils.py
@@ -28,7 +28,7 @@ from oslotest import base as test_base
from oslotest import mockpatch
import six
-from oslo.concurrency import processutils # noqa
+from oslo.concurrency import processutils
PROCESS_EXECUTION_ERROR_LOGGING_TEST = """#!/bin/bash
exit 41"""