Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit d357f5f

Browse files
richardschneiderdaviddias
authored andcommitted
fix(pubsub): topicCIDs should be topicIDs (#169)
1 parent 8c64b56 commit d357f5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pubsub.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ module.exports = (common) => {
122122
expect(msg.data.toString()).to.equal('hi')
123123
expect(msg).to.have.property('seqno')
124124
expect(Buffer.isBuffer(msg.seqno)).to.be.eql(true)
125-
expect(msg).to.have.property('topicCIDs').eql([topic])
125+
expect(msg).to.have.property('topicIDs').eql([topic])
126126
expect(msg).to.have.property('from', ipfs1.peerId.id)
127127

128128
ipfs1.pubsub.unsubscribe(topic, handler)

0 commit comments

Comments
 (0)