summaryrefslogtreecommitdiff
path: root/functionaltests
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-10-14 17:55:13 +0000
committerGerrit Code Review <review@openstack.org>2016-10-14 17:55:13 +0000
commita998f7576a6e0263f802b19bd88b51d4890c58ea (patch)
treeb8094facc5f53e7e716001db1a32a2b1eda6b7de /functionaltests
parent43007998cdcc5aeb8a9953b045e0d1e98293a272 (diff)
parent86d91e4e4e39ed0b4b65e393ca49172fd555ddd0 (diff)
downloadpython-barbicanclient-a998f7576a6e0263f802b19bd88b51d4890c58ea.tar.gz
Merge "Fix argument order for assertEqual to (expected, observed)"
Diffstat (limited to 'functionaltests')
-rw-r--r--functionaltests/client/v1/functional/test_acl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/functionaltests/client/v1/functional/test_acl.py b/functionaltests/client/v1/functional/test_acl.py
index 548929e..65462cc 100644
--- a/functionaltests/client/v1/functional/test_acl.py
+++ b/functionaltests/client/v1/functional/test_acl.py
@@ -291,7 +291,7 @@ class ACLsTestCase(BaseACLsTestCase):
entity.remove
)
- self.assertEqual(e.status_code, 404)
+ self.assertEqual(404, e.status_code)
@utils.parameterized_dataset(ACL_SUBMIT_DATA_POSITIVE)
@testcase.attr('positive')