Merge "Replace assertEqual([], items) with assertEmpty(items)"
diff --git a/manila_tempest_tests/tests/api/admin/test_share_group_types.py b/manila_tempest_tests/tests/api/admin/test_share_group_types.py
index 189ab34..c0c9a97 100644
--- a/manila_tempest_tests/tests/api/admin/test_share_group_types.py
+++ b/manila_tempest_tests/tests/api/admin/test_share_group_types.py
@@ -217,7 +217,7 @@
# List projects that have access for share group type - none expected
access = self.shares_v2_client.list_access_to_share_group_type(sgt_id)
- self.assertEqual([], access)
+ self.assertEmpty(access)
# Add project access to share group type
access = self.shares_v2_client.add_access_to_share_group_type(
@@ -242,4 +242,4 @@
# List projects that have access for share group type - none expected
access = self.shares_v2_client.list_access_to_share_group_type(sgt_id)
- self.assertEqual([], access)
+ self.assertEmpty(access)
diff --git a/manila_tempest_tests/tests/api/admin/test_share_types.py b/manila_tempest_tests/tests/api/admin/test_share_types.py
index 076e4bc..2df0561 100644
--- a/manila_tempest_tests/tests/api/admin/test_share_types.py
+++ b/manila_tempest_tests/tests/api/admin/test_share_types.py
@@ -160,7 +160,7 @@
# List projects that have access for share type - none expected
access = self.shares_v2_client.list_access_to_share_type(st_id)
- self.assertEqual([], access)
+ self.assertEmpty(access)
# Add project access to share type
access = self.shares_v2_client.add_access_to_share_type(
@@ -187,4 +187,4 @@
# List projects that have access for share type - none expected
access = self.shares_v2_client.list_access_to_share_type(st_id)
- self.assertEqual([], access)
+ self.assertEmpty(access)