Skip to content

Commit

Permalink
Fix broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmz committed Feb 9, 2025
1 parent dc2e3ae commit 0603f11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/functional/attachments.js
Original file line number Diff line number Diff line change
Expand Up @@ -943,8 +943,8 @@ describe('Attachments', () => {
`/v4/attachments/${att.id}/image?width=100&height=100`,
);
expect(resp, 'to satisfy', {
url: `${att.getFileUrl('thumbnails')}?format=jpeg&width=100&height=100`,
mimeType: 'image/jpeg',
url: `${att.getFileUrl('thumbnails')}?width=100&height=100`,
mimeType: 'image/webp',
width: 100,
height: 100,
});
Expand Down

0 comments on commit 0603f11

Please sign in to comment.