From 48c70d1523442d65c869739e3c1fffb211471cb3 Mon Sep 17 00:00:00 2001 From: williamlardier Date: Tue, 3 Dec 2024 14:21:26 +0100 Subject: [PATCH] First run a scenario with quota set Issue: ZENKO-4941 --- tests/ctst/features/quotas/Quotas.feature | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ctst/features/quotas/Quotas.feature b/tests/ctst/features/quotas/Quotas.feature index 212c6cadf..f4a3df457 100644 --- a/tests/ctst/features/quotas/Quotas.feature +++ b/tests/ctst/features/quotas/Quotas.feature @@ -21,11 +21,11 @@ Feature: Quota Management for APIs Examples: | action | uploadSize | bucketQuota | accountQuota | userType | result | expectedError | - | PutObject | 10 | 0 | 0 | ACCOUNT | succeed | | | PutObject | 10 | 100 | 0 | ACCOUNT | fail | QuotaExceeded | | PutObject | 10 | 0 | 100 | ACCOUNT | fail | QuotaExceeded | | PutObject | 10 | 100 | 100 | ACCOUNT | fail | QuotaExceeded | | PutObject | 10 | 300 | 300 | ACCOUNT | succeed | | + | PutObject | 10 | 0 | 0 | ACCOUNT | succeed | | | PutObject | 10 | 0 | 0 | IAM_USER | succeed | | | PutObject | 10 | 100 | 0 | IAM_USER | fail | QuotaExceeded | | PutObject | 10 | 0 | 100 | IAM_USER | fail | QuotaExceeded |