From 6d4edfc6d3fb77a04bb2fb6d2b7285ab8f07df7e Mon Sep 17 00:00:00 2001 From: Dan Smith Date: Mon, 30 Sep 2024 09:58:30 -0700 Subject: [PATCH] Fix web-download trying to import qcow2 as raw This test aims to specifically import a qcow2 image via web-download, but it creates the image with no such specificity. When glance begins to inspect the stream, this will fail checking. Change-Id: Ie901e61a1d2b395ffaff47aabbd9d3840c6b0327 --- tempest/api/image/v2/test_images.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tempest/api/image/v2/test_images.py b/tempest/api/image/v2/test_images.py index f6ca3175ec..e9c7dbacff 100644 --- a/tempest/api/image/v2/test_images.py +++ b/tempest/api/image/v2/test_images.py @@ -132,7 +132,7 @@ class ImportImagesTest(base.BaseV2ImageTest): """ self._require_import_method('web-download') - image = self._create_image() + image = self._create_image(disk_format='qcow2') # Now try to get image details body = self.client.show_image(image['id']) self.assertEqual(image['id'], body['id'])