summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave McCowan <dmccowan@cisco.com>2017-01-24 09:24:29 -0500
committerDave McCowan <dmccowan@cisco.com>2017-02-15 14:31:47 +0000
commit3c304c015e58cb14d68f528f66fb343b611bf0af (patch)
tree3f3a3b73f0e049a3f9ddd8fdddadb8b0a79808da
parentddc1cd06203f73e916d79400c1e88e84c2b55849 (diff)
downloadpython-barbicanclient-stable/newton.tar.gz
Remove invalid smoke test that is failing in the gatenewton-eolstable/newton
The smoke test that ran the CLI command "acl delete" with a null entity_ref was failing with an exception in the cliff library. This test is invalid, since the CLI parser would not accept this command without an entity_ref. This test failed more gracefully with cliff 2.3.0, but in 2.4.0 cliff throws an exception that causes this test to start failing. This patch is needed in stable/newton to prevent gate failures, since upper constraints are not set. Change-Id: If91d4966eff77dad7c8569e309134dc540edc258 (cherry picked from commit 0eb09156adee9201b8e67ef8324b0ad3748d24d7)
-rw-r--r--functionaltests/cli/v1/smoke/test_acl.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/functionaltests/cli/v1/smoke/test_acl.py b/functionaltests/cli/v1/smoke/test_acl.py
index 105681f..0a194c5 100644
--- a/functionaltests/cli/v1/smoke/test_acl.py
+++ b/functionaltests/cli/v1/smoke/test_acl.py
@@ -240,5 +240,3 @@ class ACLTestCase(CmdLineTestCase):
# above secret ACL ref is passed instead of expected secret_ref
self.assertIn('Secret ACL URI', err)
- err = self.acl_behaviors.acl_delete(entity_ref=None)
- self.assertIn("Secret or container href", err)