Fix snapshot manage Tempest test

In the process of managing a snapshot, drivers may want to
rename the snapshot. This could warrant updating the
provider_location as well.

The tempest tests for snapshot manage should not expect that
the provider location will remain unchanged after the driver
has performed the manage operation.

Change-Id: Ib07ba0c55ef4cb3da8f4ba5b0f9c1d4340c3f0e1
Closes-Bug: #1598287
This commit is contained in:
Clinton Knight 2016-07-01 17:10:01 -04:00
parent fdc1158562
commit c7d4d6ddc0

View File

@ -112,8 +112,6 @@ class ManageNFSSnapshotTest(base.BaseSharesAdminTest):
self.assertEqual(name, get_snapshot['name'])
self.assertEqual(description, get_snapshot['description'])
self.assertEqual(snapshot['share_id'], get_snapshot['share_id'])
self.assertEqual(snapshot['provider_location'],
get_snapshot['provider_location'])
# Delete snapshot
self.shares_v2_client.delete_snapshot(get_snapshot['id'])