Fix UAT seed local storage quota integer range
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
"""
|
||||
"""
|
||||
Audit Firm ERP -- UAT seed data for Playwright v2.4.1 IMAP.
|
||||
|
||||
Purpose:
|
||||
@@ -585,7 +585,7 @@ def main() -> None:
|
||||
"storage_mode": "pull_jobs",
|
||||
"status": "active",
|
||||
"is_active": True,
|
||||
"quota_limit_bytes": 10 * 1024 * 1024 * 1024,
|
||||
"quota_limit_bytes": 1024 * 1024 * 1024,
|
||||
"used_storage_bytes": 0,
|
||||
"subscription_required": False,
|
||||
"created_by_user_id": firm_admin.id,
|
||||
@@ -685,3 +685,4 @@ def main() -> None:
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user