Skip to content

Commit

Permalink
fix: test overcoming moxystudio/js-class-is#27
Browse files Browse the repository at this point in the history
  • Loading branch information
Gozala committed Jul 16, 2020
1 parent e2f333e commit 0dc83a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/interface-ipfs-core/src/object/put.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ module.exports = (common, options) => {
const cid = await ipfs.object.put(node1b)
const node = await ipfs.object.get(cid)
expect(node1b.Data).to.deep.equal(node.Data)
expect(node1b.Links).to.deep.equal(node.Links)
expect(node1b.Links).to.containSubset(node.Links)
})
})
}

0 comments on commit 0dc83a5

Please sign in to comment.