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

Commit 8e3645e

Browse files
pgtedaviddias
authored andcommitted
fix: cat not found message in go-ipfs (#183)
1 parent 74cd2a1 commit 8e3645e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/files.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,9 @@ module.exports = (common) => {
436436
return ipfs.files.cat(smallFile.cid + '/does-not-exist')
437437
.catch((err) => {
438438
expect(err).to.exist()
439-
expect(err.message).to.contain('No such file')
439+
expect(err.message).to.oneOf([
440+
'No such file',
441+
'no link named "does-not-exist" under Qma4hjFTnCasJ8PVp3mZbZK5g2vGDT4LByLJ7m8ciyRFZP'])
440442
})
441443
})
442444

0 commit comments

Comments
 (0)