diff --git a/tests/ctst/features/quotas/Quotas.feature b/tests/ctst/features/quotas/Quotas.feature index b0e0f81c8..a724f90a6 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 |