style: auto format

This commit is contained in:
github-actions[bot] 2026-06-20 15:12:58 +00:00
parent 417ab04f06
commit b24e8736b5
1 changed files with 1 additions and 1 deletions

View File

@ -272,7 +272,7 @@ const testAntiHotlink = async (path, expectObj, query?: string | Record<string,
.map(([key, value]) => `${key}=${value}`)
.join('&');
}
path += (queryStr ? `?${queryStr}` : '');
path += queryStr ? `?${queryStr}` : '';
const response = await app.request(path);
const parsed = await parser.parseString(await response.text());