From be1bb4bf6fc4092b18a23ba4b86d327e43f4c527 Mon Sep 17 00:00:00 2001 From: Goutham Pacha Ravi Date: Mon, 28 Jul 2025 13:54:50 -0700 Subject: [PATCH] Fix share type used in negative quota test It would be useful for tests to always specify the share type to be used so as to not rely on the default share type that may be misconfigured, or not configured at all. Change-Id: I5dae5e7daeb6b0b76a7a369714dce571a19cb000 Signed-off-by: Goutham Pacha Ravi --- manila_tempest_tests/tests/api/admin/test_quotas_negative.py | 1 + 1 file changed, 1 insertion(+) diff --git a/manila_tempest_tests/tests/api/admin/test_quotas_negative.py b/manila_tempest_tests/tests/api/admin/test_quotas_negative.py index 20e359a0..5b4ff1d2 100644 --- a/manila_tempest_tests/tests/api/admin/test_quotas_negative.py +++ b/manila_tempest_tests/tests/api/admin/test_quotas_negative.py @@ -130,6 +130,7 @@ class SharesAdminQuotasNegativeTest(base.BaseSharesAdminTest): # try schedule share with size, bigger than gigabytes quota self.assertRaises(lib_exc.OverLimit, self.create_share, + share_type_id=self.share_type_id, size=overquota) @decorators.idempotent_id('37dd40a8-375e-454b-8b80-229cb0eecb01')