Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix querystring tests
The deep-equal check is in "strict mode" so it needs the prototypes of both objects to be equal. This fixes that.
  • Loading branch information
feross committed May 10, 2020
commit cecb778b4b44cf76b17c36781cec5e7f37616a5e
6 changes: 3 additions & 3 deletions test/querystring.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ var test = require('tape')

// https://github.com/webtorrent/webtorrent/issues/196
test('encode special chars +* in http tracker urls', function (t) {
var q = {
info_hash: Buffer.from('a2a15537542b22925ad10486bf7a8b2a9c42f0d1', 'hex').toString('binary')
}
var q = Object.create(null)
q.info_hash = Buffer.from('a2a15537542b22925ad10486bf7a8b2a9c42f0d1', 'hex').toString('binary')

var encoded = 'info_hash=%A2%A1U7T%2B%22%92Z%D1%04%86%BFz%8B%2A%9CB%F0%D1'
t.equal(common.querystringStringify(q), encoded)

Expand Down