summaryrefslogtreecommitdiff
path: root/functionaltests/cli/v1/smoke/test_acl.py
diff options
context:
space:
mode:
authorJeremy Liu <liujiong@gohighsec.com>2017-05-02 18:10:07 +0800
committerJeremy Liu <liujiong@gohighsec.com>2017-05-02 22:30:34 +0800
commit8860c161da8ffc05723005189447507d04551860 (patch)
tree5075a3537b568ae47d8ee82368e3c75fc82fcf70 /functionaltests/cli/v1/smoke/test_acl.py
parentb25346c76f4b3f4879ce770b648bdb202f102e8b (diff)
downloadpython-barbicanclient-8860c161da8ffc05723005189447507d04551860.tar.gz
Extend pep8 test coverage
We just run pep8 test on barbicanclient directory and functionaltests directory is not included. This patch extends pep8 test coverage and removes the script for running pep8 test. Change-Id: I2b4fe6fadd69884c749a91b390297600bfa40182
Diffstat (limited to 'functionaltests/cli/v1/smoke/test_acl.py')
-rw-r--r--functionaltests/cli/v1/smoke/test_acl.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/functionaltests/cli/v1/smoke/test_acl.py b/functionaltests/cli/v1/smoke/test_acl.py
index a1ae6f8..cae2c4e 100644
--- a/functionaltests/cli/v1/smoke/test_acl.py
+++ b/functionaltests/cli/v1/smoke/test_acl.py
@@ -13,11 +13,11 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-from functionaltests import utils
from functionaltests.cli.base import CmdLineTestCase
from functionaltests.cli.v1.behaviors import acl_behaviors
from functionaltests.cli.v1.behaviors import container_behaviors
from functionaltests.cli.v1.behaviors import secret_behaviors
+from functionaltests import utils
from testtools import testcase
ARGS_TYPE = {'short_arg_false': [False],
@@ -238,4 +238,3 @@ class ACLTestCase(CmdLineTestCase):
err = self.acl_behaviors.acl_delete(entity_ref=secret_ref + '/acl')
# above secret ACL ref is passed instead of expected secret_ref
self.assertIn('Secret ACL URI', err)
-