Remove invalid smoke test that is failing in the gate

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 0eb09156ad)
This commit is contained in:
Dave McCowan 2017-01-24 09:24:29 -05:00
parent ddc1cd0620
commit 3c304c015e
1 changed files with 0 additions and 2 deletions

View File

@ -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)