Skip to content

Commit

Permalink
fix: no quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleytodd committed Aug 31, 2024
1 parent 80118be commit 028b4fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ describe('contentDisposition.parse(string)', function () {
it('should parse UTF8 extended parameter value', function () {
assert.deepEqual(contentDisposition.parse('attachment; filename*=utf8\'\'%E2%82%AC%20rates.pdf'), {
type: 'attachment',
parameters: { 'filename': '€ rates.pdf' }
parameters: { filename: '€ rates.pdf' }
})
})

Expand Down

0 comments on commit 028b4fc

Please sign in to comment.