Cast block count to integer in test_create_shrink_and_write

TrivialFix

Change-Id: Ia9c1b5d74b2fe40a33d8d6e94165ba6c5b6fefdc
This commit is contained in:
Goutham Pacha Ravi 2019-06-12 17:14:12 -07:00
parent 26e3ce1599
commit 00fd19d2fd
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ class ShareShrinkBase(manager.ShareScenarioTest):
LOG.debug('Step 5 - mount')
self.mount_share(locations[0], remote_client)
total_blocks = (1024 * default_share_size) / 64
total_blocks = int((1024 * default_share_size) / 64)
blocks = total_blocks + 4
LOG.debug('Step 6 - writing {} * 64MB blocks'.format(blocks))
self.write_data_to_mounted_share_using_dd(remote_client,