We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1eb2d81 commit 53f19ccCopy full SHA for 53f19cc
test/interface-tests/src/dht/query.js
@@ -50,11 +50,11 @@ export function testQuery (factory, options) {
50
51
for await (const event of nodeA.dht.query(nodeBId.id)) {
52
if (event.name === 'PEER_RESPONSE') {
53
- peers.push(...event.closer.map(data => data.id))
+ peers.push(...event.closer.map(data => data.id.toString()))
54
}
55
56
57
- expect(peers).to.include(nodeBId.id)
+ expect(peers).to.include(nodeBId.id.toString())
58
})
59
60
0 commit comments