Skip to content

Commit

Permalink
Revert "Backport fix ups for Zed"
Browse files Browse the repository at this point in the history
This reverts commit 1ae4324.
  • Loading branch information
priteau committed Dec 13, 2024
1 parent f721de4 commit 64a87fd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion glance/tests/unit/common/test_format_inspector.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def _create_img(self, fmt, size, subformat=None, options=None,
suffix='.%s' % fmt)
self._created_files.append(fn)
subprocess.check_output(
'qemu-img create -f %s %s %s %i' % (fmt, opt, fn, size),
'qemu-img create -f %s %s %i' % (fmt, fn, size),
shell=True)
return fn

Expand Down
4 changes: 2 additions & 2 deletions glance/tests/unit/v2/test_tasks_resource.py
Original file line number Diff line number Diff line change
Expand Up @@ -415,8 +415,8 @@ def test_create_with_wrong_import_form(self):
"non-local source of image data.")
else:
supported = ['http', ]
msg = ("The given URI is not valid. Please specify a "
"valid URI from the following list of supported URI "
msg = ("The given uri is not valid. Please specify a "
"valid uri from the following list of supported uri "
"%(supported)s") % {'supported': supported}
self.assertEqual(msg, final_task.message)

Expand Down

0 comments on commit 64a87fd

Please sign in to comment.