diff options
| author | Gilles Dubreuil <gilles@redhat.com> | 2015-07-15 17:19:30 +1000 |
|---|---|---|
| committer | Steve Martinelli <stevemar@ca.ibm.com> | 2015-07-19 13:33:00 -0700 |
| commit | 00b4e38d3c3acf01ca5d7ff3cae287b4f8c9df2a (patch) | |
| tree | 22070aff23554632c846ba769180f1edb7e0d53c /openstackclient/tests/identity | |
| parent | 1af89f757c1edf44067de964cb6ca8dffbb1969e (diff) | |
| download | python-openstackclient-00b4e38d3c3acf01ca5d7ff3cae287b4f8c9df2a.tar.gz | |
Removes trailing blank in trust show
Previously a blank character at the end of the roles value would remain
Change-Id: I0961a5f9fb4b270a6055ee69898eadee315e416a
Closes-Bug: 1474707
Diffstat (limited to 'openstackclient/tests/identity')
| -rw-r--r-- | openstackclient/tests/identity/v3/test_trust.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openstackclient/tests/identity/v3/test_trust.py b/openstackclient/tests/identity/v3/test_trust.py index b3fbe7f0..b90e7815 100644 --- a/openstackclient/tests/identity/v3/test_trust.py +++ b/openstackclient/tests/identity/v3/test_trust.py @@ -107,7 +107,7 @@ class TestTrustCreate(TestTrust): identity_fakes.trust_id, identity_fakes.trust_impersonation, identity_fakes.project_id, - identity_fakes.role_name + ' ', + identity_fakes.role_name, identity_fakes.user_id, identity_fakes.user_id ) @@ -222,7 +222,7 @@ class TestTrustShow(TestTrust): identity_fakes.trust_id, identity_fakes.trust_impersonation, identity_fakes.project_id, - identity_fakes.role_name + ' ', + identity_fakes.role_name, identity_fakes.user_id, identity_fakes.user_id ) |
