fix(e2e): update storage with PATCH

This commit is contained in:
saltbo
2026-07-23 18:36:54 -04:00
parent 3894af86ec
commit 2c1d797df8
+1 -1
View File
@@ -215,7 +215,7 @@ setup('seed admin and storage', async () => {
const existing = storages[0]
if (existing) {
const resp = await request.put(`/api/site/storages/${existing.id}`, {
const resp = await request.patch(`/api/site/storages/${existing.id}`, {
headers,
data: storageConfig,
})