Codebase list cinder-tempest-plugin / 3cd73f6
Add metadata to snapshot for revert test This may help test the problem exposed in bug 1805790, but it will only trigger it if the job is running with notifications turned on. Related-Bug: #1805790 Change-Id: Ie1778624f51cfc05c5d42174065a21a6ceaae138 Eric Harney 7 years ago
1 changed file(s) with 2 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
4545 # Create volume
4646 self.volume = self.create_volume()
4747 # Create snapshot
48 self.snapshot = self.create_snapshot(self.volume['id'])
48 self.snapshot = self.create_snapshot(self.volume['id'],
49 metadata={'mykey1': 'value1'})
4950
5051 @decorators.idempotent_id('87b7dcb7-4950-4a3a-802c-ece55491846d')
5152 def test_volume_revert_to_snapshot(self):