Skip to content

Commit

Permalink
First run a scenario with quota set
Browse files Browse the repository at this point in the history
Issue: ZENKO-4941
  • Loading branch information
williamlardier committed Dec 3, 2024
1 parent 64e7fe8 commit 48c70d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ctst/features/quotas/Quotas.feature
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down

0 comments on commit 48c70d1

Please sign in to comment.