diff options
| author | Zuul <zuul@review.opendev.org> | 2019-06-23 04:49:33 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2019-06-23 04:49:33 +0000 |
| commit | eada2db332caa3dc042650437a1536e589505c2b (patch) | |
| tree | 4359e107710853135e6a1166c107f88cb867ce97 /openstackclient/tests/unit/identity/v3/fakes.py | |
| parent | f0fafec54f0d0ad5bc241d5d93c98b4d23f94dfc (diff) | |
| parent | fa5046a3dbf8cf398b9a05c68e6ee4badbb14ee7 (diff) | |
| download | python-openstackclient-eada2db332caa3dc042650437a1536e589505c2b.tar.gz | |
Merge "Use cliff formattable columns in identity commands"
Diffstat (limited to 'openstackclient/tests/unit/identity/v3/fakes.py')
| -rw-r--r-- | openstackclient/tests/unit/identity/v3/fakes.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/openstackclient/tests/unit/identity/v3/fakes.py b/openstackclient/tests/unit/identity/v3/fakes.py index e5727a6a..e9ff0689 100644 --- a/openstackclient/tests/unit/identity/v3/fakes.py +++ b/openstackclient/tests/unit/identity/v3/fakes.py @@ -20,6 +20,7 @@ import uuid from keystoneauth1 import access from keystoneauth1 import fixture import mock +from osc_lib.cli import format_columns from openstackclient.tests.unit import fakes from openstackclient.tests.unit import utils @@ -304,7 +305,7 @@ TOKEN_WITH_DOMAIN_ID = { idp_id = 'test_idp' idp_description = 'super exciting IdP description' idp_remote_ids = ['entity1', 'entity2'] -formatted_idp_remote_ids = 'entity1, entity2' +formatted_idp_remote_ids = format_columns.ListColumn(idp_remote_ids) IDENTITY_PROVIDER = { 'id': idp_id, |
