commit | 00fd19d2fd361238460be31001c1234250a04efb | [log] [tgz] |
---|---|---|
author | Goutham Pacha Ravi <gouthampravi@gmail.com> | Wed Jun 12 17:14:12 2019 -0700 |
committer | Goutham Pacha Ravi <gouthampravi@gmail.com> | Wed Jun 12 17:14:12 2019 -0700 |
tree | fef70081314c0daa9842c4e8bbe41b6a4a314dcd | |
parent | 26e3ce1599563b935062cda82269859c37c1f977 [diff] |
Cast block count to integer in test_create_shrink_and_write TrivialFix Change-Id: Ia9c1b5d74b2fe40a33d8d6e94165ba6c5b6fefdc
diff --git a/manila_tempest_tests/tests/scenario/test_share_shrink.py b/manila_tempest_tests/tests/scenario/test_share_shrink.py index 8bbb921..03427af 100644 --- a/manila_tempest_tests/tests/scenario/test_share_shrink.py +++ b/manila_tempest_tests/tests/scenario/test_share_shrink.py
@@ -71,7 +71,7 @@ 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,