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
This commit is contained in:
Eric Harney 2019-02-25 10:26:29 -05:00
parent f208601ab5
commit 3cd73f60d8
1 changed files with 2 additions and 1 deletions

View File

@ -46,7 +46,8 @@ class VolumeRevertTests(base.BaseVolumeTest):
# Create volume
self.volume = self.create_volume()
# Create snapshot
self.snapshot = self.create_snapshot(self.volume['id'])
self.snapshot = self.create_snapshot(self.volume['id'],
metadata={'mykey1': 'value1'})
@decorators.idempotent_id('87b7dcb7-4950-4a3a-802c-ece55491846d')
def test_volume_revert_to_snapshot(self):