commit | af839c3775e0eda893bca2b8ab5e787e7b38ed69 | [log] [tgz] |
---|---|---|
author | donald-ngo <donald.ngo@hp.com> | Wed Mar 14 13:51:50 2012 -0700 |
committer | donald-ngo <donald.ngo@hp.com> | Wed Mar 14 13:51:50 2012 -0700 |
tree | 1ffad9ed0a9e0a890bcb6830a15da462a7ff947a | |
parent | ef6b5fc8fcd6de462f349a64ffa683bf680c6789 [diff] |
Fixes bug 938953 parsing of image id Change-Id: I8cac92af3cc40174d4acc390913be90fa5a7552c
diff --git a/tempest/tests/test_images.py b/tempest/tests/test_images.py index c422708..8217d2a 100644 --- a/tempest/tests/test_images.py +++ b/tempest/tests/test_images.py
@@ -7,8 +7,8 @@ def _parse_image_id(image_ref): - temp = image_ref.rsplit('/') - return temp[6] + temp = image_ref.rsplit('images/') + return temp[1] class ImagesTest(unittest.TestCase):