Dropping explicit unicode literal

In python 3, all strings are considered as unicode string.

This patch drops the explicit unicode literal (u'...')
or (u"..") appearances from the unicode strings.

Change-Id: Ied40f6e4fefc66f847fed7e934d53ccb64be8dd4
This commit is contained in:
tushargite96 2021-07-06 13:06:45 +05:30 committed by Tushar Trambak Gite
parent fc98b2866e
commit a3b2272871
1 changed files with 2 additions and 2 deletions

View File

@ -72,13 +72,13 @@ class CinderUnicodeTest(base.BaseVolumeTest):
@decorators.idempotent_id('332be44d-5418-4fb3-a8f0-a3587de6929f')
def test_snapshot_create_volume_description_non_ascii_code(self):
# Create a volume with non-ascii description
description = u'\u05e7\u05d9\u05d9\u05e4\u05e9'
description = '\u05e7\u05d9\u05d9\u05e4\u05e9'
volume = self.create_volume(description=description)
vol_info = self.volumes_client.show_volume(volume['id'])['volume']
self.assertEqual(description, vol_info['description'])
# Create a snapshot with different non-ascii description
description = u'\u4e2d\u56fd\u793e\u533a'
description = '\u4e2d\u56fd\u793e\u533a'
snapshot = self.create_snapshot(volume['id'], description=description)
snapshot_info = self.snapshots_client.show_snapshot(
snapshot['id'])['snapshot']