diff options
| author | Jenkins <jenkins@review.openstack.org> | 2017-06-06 04:48:46 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2017-06-06 04:48:46 +0000 |
| commit | ee59989103d409da78460a2f961264db0da8ff4b (patch) | |
| tree | 6360aef987277a943f28d0b617ac3dce9a728214 /openstackclient/tests/functional/compute/v2/common.py | |
| parent | c912717e42ce42b36125f4085c07baa04815e095 (diff) | |
| parent | eeb614c47759fa9a01e6d886ed07acceb8d9ff61 (diff) | |
| download | python-openstackclient-ee59989103d409da78460a2f961264db0da8ff4b.tar.gz | |
Merge "volume functest: ensure snapshots deleted when volume delete"
Diffstat (limited to 'openstackclient/tests/functional/compute/v2/common.py')
| -rw-r--r-- | openstackclient/tests/functional/compute/v2/common.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/openstackclient/tests/functional/compute/v2/common.py b/openstackclient/tests/functional/compute/v2/common.py index 99d87bb4..851664c8 100644 --- a/openstackclient/tests/functional/compute/v2/common.py +++ b/openstackclient/tests/functional/compute/v2/common.py @@ -125,12 +125,12 @@ class ComputeTestCase(base.TestCase): name )) status = cmd_output['status'] - print('Waiting for {}, current status: {}'.format( - expected_status, - status, - )) if status == expected_status: + print('Server {} now has status {}'.format( + name, status)) break + print('Server {}: Waiting for {}, current status: {}'.format( + name, expected_status, status)) self.assertNotIn(status, failures) time.sleep(interval) total_sleep += interval |
