Add missing ws separator between words
This is to add missing ws separator between words. Change-Id: Iad9e39b33e7c7c613f833468fbb13cdd3ec2cb96
This commit is contained in:
parent
726f343832
commit
ef63f8c2cb
@ -65,7 +65,7 @@ OPTS = {"openstack": [
|
||||
cfg.IntOpt("flavor_ref_alt_ram",
|
||||
default="128",
|
||||
deprecated_group="tempest",
|
||||
help="Alternate reference flavor RAM size used by test that"
|
||||
help="Alternate reference flavor RAM size used by test that "
|
||||
"need two flavors, like those that resize an instance"),
|
||||
cfg.IntOpt("heat_instance_type_ram",
|
||||
default="64",
|
||||
|
@ -30,7 +30,7 @@ from rally_openstack.scenarios.ceilometer import utils
|
||||
platform="openstack")
|
||||
class CreateMeterAndGetStats(utils.CeilometerScenario):
|
||||
|
||||
@logging.log_deprecated("Use 'get_stats' method, now samples are created"
|
||||
@logging.log_deprecated("Use 'get_stats' method, now samples are created "
|
||||
"in context", "0.1.2")
|
||||
def run(self, **kwargs):
|
||||
"""Create a meter and fetch its statistics.
|
||||
|
@ -118,7 +118,7 @@ class CreateAndListVolumeTypes(cinder_utils.CinderBasic):
|
||||
is_public=is_public)
|
||||
|
||||
pool_list = self.admin_cinder.list_types()
|
||||
msg = ("type not included into list of available types"
|
||||
msg = ("type not included into list of available types "
|
||||
"created type: {}\n"
|
||||
"pool of types: {}\n").format(volume_type, pool_list)
|
||||
self.assertIn(volume_type.id,
|
||||
|
@ -536,7 +536,7 @@ class BootServerAttachVolumeAndListAttachments(utils.NovaScenario,
|
||||
list_attachments = self._list_attachments(server.id)
|
||||
|
||||
for attachment in attachments:
|
||||
msg = ("attachment not included into list of available"
|
||||
msg = ("attachment not included into list of available "
|
||||
"attachments\n attachment: {}\n"
|
||||
"list attachments: {}").format(attachment, list_attachments)
|
||||
self.assertIn(attachment, list_attachments, err_msg=msg)
|
||||
|
@ -175,8 +175,8 @@ class UnifiedGlanceV1Service(glance_common.UnifiedGlanceMixin, image.Image):
|
||||
:param remove_props: List of property names to remove
|
||||
"""
|
||||
if remove_props is not None:
|
||||
raise image.RemovePropsException("Remove prop: %s is not"
|
||||
"supported in"
|
||||
raise image.RemovePropsException("Remove prop: %s is not "
|
||||
"supported in "
|
||||
"glance_v1" % remove_props)
|
||||
image_obj = self._impl.update_image(
|
||||
image_id=image_id,
|
||||
|
Loading…
Reference in New Issue
Block a user