Add unique ID for ProjectReaderTests.test_get_capabilities()
ProjectReaderTests.test_get_capabilities() used the same ID as
ProjectMemberTests.test_get_capabilities(), so to differentiate
between the two tests, I added another ID.
Change-Id: I416a21489c2a9096257bb3dc4465574435e10672
diff --git a/cinder_tempest_plugin/rbac/v3/test_capabilities.py b/cinder_tempest_plugin/rbac/v3/test_capabilities.py
index 7024e30..62f9b58 100644
--- a/cinder_tempest_plugin/rbac/v3/test_capabilities.py
+++ b/cinder_tempest_plugin/rbac/v3/test_capabilities.py
@@ -81,3 +81,7 @@
class ProjectReaderTests(ProjectMemberTests, base.BaseVolumeTest):
credentials = ['project_reader', 'project_admin', 'system_admin']
+
+ @decorators.idempotent_id('d16034fc-4204-4ea8-94b3-714de59fdfbf')
+ def test_get_capabilities(self):
+ super().test_get_capabilities()