diff options
| author | Akihiro Motoki <amotoki@gmail.com> | 2017-05-15 07:55:41 +0000 |
|---|---|---|
| committer | Dean Troyer <dtroyer@gmail.com> | 2019-06-22 14:53:28 -0500 |
| commit | 1af3056e301807e4474cde49eef3e00931ab08c2 (patch) | |
| tree | 4da6432ad7d2eaa7b37bf87f9cf439fad418035f /openstackclient/tests/functional/volume/v1/test_qos.py | |
| parent | 1a21f02bc7507120f3a4fe2af12ba7a27b002b44 (diff) | |
| download | python-openstackclient-1af3056e301807e4474cde49eef3e00931ab08c2.tar.gz | |
Use cliff formattable columns in volume v1 commands
Partial-Bug: #1687955
Partially implement blueprint osc-formattable-columns
Change-Id: Ib4c5798171e32a8ddc08a37ee1d416e366a71d76
Diffstat (limited to 'openstackclient/tests/functional/volume/v1/test_qos.py')
| -rw-r--r-- | openstackclient/tests/functional/volume/v1/test_qos.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openstackclient/tests/functional/volume/v1/test_qos.py b/openstackclient/tests/functional/volume/v1/test_qos.py index 434840f6..d8277dfc 100644 --- a/openstackclient/tests/functional/volume/v1/test_qos.py +++ b/openstackclient/tests/functional/volume/v1/test_qos.py @@ -93,7 +93,7 @@ class QosTests(common.BaseVolumeTests): cmd_output['name'] ) self.assertEqual( - "Alpha='c', Beta='b'", + {'Alpha': 'c', 'Beta': 'b'}, cmd_output['properties'] ) @@ -114,7 +114,7 @@ class QosTests(common.BaseVolumeTests): cmd_output['name'] ) self.assertEqual( - "Beta='b'", + {'Beta': 'b'}, cmd_output['properties'] ) |
