Skip to content

Commit

Permalink
fix: fixed eslint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
titanism committed Aug 24, 2024
1 parent bfb2d00 commit 63b009f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/client/serialize.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ describe('request.serializeObject()', () => {
serialize({ '&name&': 'tj' }, '%26name%26=tj');
serialize({ hello: '`test`' }, 'hello=%60test%60');
serialize({ $hello: 'test' }, '$hello=test');
// eslint-disable-next-line no-dupe-keys
serialize({ foo: 'foo', foo: 'bar' }, 'foo=foo&foo=bar');
});
});
Expand Down

0 comments on commit 63b009f

Please sign in to comment.