commit | a30dd6ea3397602cee62847ab493837ecc32fd8c | [log] [tgz] |
---|---|---|
author | Seena Fallah <seenafallah@gmail.com> | Fri Oct 01 01:24:51 2021 +0330 |
committer | Seena Fallah <seenafallah@gmail.com> | Fri Oct 01 01:26:30 2021 +0330 |
tree | c1f5b3d4ba7ff78b0ae1b4909444599041fb6418 | |
parent | a2a23ca6d10c90d19cda68220d102409c75390e5 [diff] |
volume: fix wrong snapshot_id for revert_to_snapshot_after_extended_negative revert_to_snapshot receive snapshot_id not a snapshot object Signed-off-by: Seena Fallah <seenafallah@gmail.com> Change-Id: Ibccc48c5afb402e899ebbb471e2fc2e90d4d8886
diff --git a/cinder_tempest_plugin/api/volume/test_volume_revert.py b/cinder_tempest_plugin/api/volume/test_volume_revert.py index 7c5eed1..bf3d806 100644 --- a/cinder_tempest_plugin/api/volume/test_volume_revert.py +++ b/cinder_tempest_plugin/api/volume/test_volume_revert.py
@@ -80,4 +80,4 @@ # Destination volume smaller than source, API should block that self.assertRaises(exceptions.BadRequest, self.volume_revert_client.revert_to_snapshot, - self.volume, self.snapshot) + self.volume, self.snapshot['id'])