Fix UAT seed local storage quota integer range

This commit is contained in:
A R R R Associates
2026-06-22 16:41:39 +05:30
parent d40f357607
commit e747f16f6d
+3 -2
View File
@@ -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()