From 101486341f12301a3ea89201e501e255c34c4eac Mon Sep 17 00:00:00 2001 From: Evelina Shames Date: Mon, 6 Feb 2023 07:09:31 +0000 Subject: [PATCH] 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 --- cinder_tempest_plugin/rbac/v3/test_capabilities.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cinder_tempest_plugin/rbac/v3/test_capabilities.py b/cinder_tempest_plugin/rbac/v3/test_capabilities.py index 7024e303..62f9b58a 100644 --- a/cinder_tempest_plugin/rbac/v3/test_capabilities.py +++ b/cinder_tempest_plugin/rbac/v3/test_capabilities.py @@ -81,3 +81,7 @@ class ProjectMemberTests(ProjectAdminTests, base.BaseVolumeTest): 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()