Skip to content

Commit

Permalink
test(backend/antenna): bring being spread parameters first in object …
Browse files Browse the repository at this point in the history
…literal
  • Loading branch information
KisaragiEffective committed Sep 5, 2024
1 parent 9a9e3a3 commit edf930b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/test/e2e/antennas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ describe('アンテナ', () => {
const antenna = await successfulApiCall({ endpoint: 'antennas/create', parameters: defaultParam, user: alice });
await failedApiCall({
endpoint: 'antennas/update',
parameters: { antennaId: antenna.id, ...defaultParam, keywords: [[]], excludeKeywords: [[]] },
parameters: { ...defaultParam, antennaId: antenna.id, keywords: [[]], excludeKeywords: [[]] },
user: alice
}, {
status: 400,
Expand Down

0 comments on commit edf930b

Please sign in to comment.