Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sefinek committed Dec 11, 2024
1 parent 34c1233 commit 284d050
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/api.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ describe('NekosiaAPI (API Tests)', () => {
const res = await NekosiaAPI.fetchImages('catgirl', { count: 'invalid' });
expect(res.success).toBe(false);
expect(res.status).toBe(400);
expect(res.message).toBe('Invalid count parameter. Expected a number between 1 and 48.');
expect(res.message).toBe('Invalid count parameter. Expected a number between 1 and 48 (>48).');
});
});

Expand Down

0 comments on commit 284d050

Please sign in to comment.