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

Commit 30a84fb

Browse files
committed
fix: make invalid url actually invalid
I'm using one of those ISPs that 'helpfully' directs you to a search page if the URL you are accessing does not have a DNS match. The URL used in the test was well formed but not a real domain though can be resolved, so this PR changes it to be something even a web-breaking DNS server would refuse to resolve.
1 parent ac4d362 commit 30a84fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/files-regular/add-from-url.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ module.exports = (createCommon, options) => {
120120
})
121121

122122
it('should not add from an invalid url', (done) => {
123-
ipfs.addFromURL('http://invalid', (err, result) => {
123+
ipfs.addFromURL('123http://invalid', (err, result) => {
124124
expect(err).to.exist()
125125
expect(result).to.not.exist()
126126
done()

0 commit comments

Comments
 (0)