summaryrefslogtreecommitdiff
path: root/openstackclient/tests/unit/identity/v3/fakes.py
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2019-06-23 04:49:33 +0000
committerGerrit Code Review <review@openstack.org>2019-06-23 04:49:33 +0000
commiteada2db332caa3dc042650437a1536e589505c2b (patch)
tree4359e107710853135e6a1166c107f88cb867ce97 /openstackclient/tests/unit/identity/v3/fakes.py
parentf0fafec54f0d0ad5bc241d5d93c98b4d23f94dfc (diff)
parentfa5046a3dbf8cf398b9a05c68e6ee4badbb14ee7 (diff)
downloadpython-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.py3
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,