diff options
| author | Jenkins <jenkins@review.openstack.org> | 2016-04-14 19:55:26 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2016-04-14 19:55:26 +0000 |
| commit | e1305185d33f0d760de7c665fc2b673b625949e5 (patch) | |
| tree | b33fe204cabedbb994e9178c051ab0bd636f002d /functional/tests/identity/v2 | |
| parent | 83fbce496aa87c361946b3e30a66a82bd83fac57 (diff) | |
| parent | b13ec98467f2d374e741efa5888937c5f2b86ebb (diff) | |
| download | python-openstackclient-e1305185d33f0d760de7c665fc2b673b625949e5.tar.gz | |
Merge "Prefer assertEqual/assertIn over assertOutput/assertInOutput"
Diffstat (limited to 'functional/tests/identity/v2')
| -rw-r--r-- | functional/tests/identity/v2/test_endpoint.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functional/tests/identity/v2/test_endpoint.py b/functional/tests/identity/v2/test_endpoint.py index 0aed3220..8064365e 100644 --- a/functional/tests/identity/v2/test_endpoint.py +++ b/functional/tests/identity/v2/test_endpoint.py @@ -27,7 +27,7 @@ class EndpointTests(test_identity.IdentityTests): def test_endpoint_list(self): endpoint_id = self._create_dummy_endpoint() raw_output = self.openstack('endpoint list') - self.assertInOutput(endpoint_id, raw_output) + self.assertIn(endpoint_id, raw_output) items = self.parse_listing(raw_output) self.assert_table_structure(items, self.ENDPOINT_LIST_HEADERS) |
