Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFeross Aboukhadijeh <feross@feross.org>2015-01-26 22:50:07 +0300
committerFeross Aboukhadijeh <feross@feross.org>2015-01-26 22:50:07 +0300
commit5816ebf5a9e8b27bd60ff0ef8ae581441886a0e9 (patch)
tree4699931cba648f689a6406a1fa471f27f3bd140b /test/basic-node.js
parentb4f8066b395ff5fe9716227c2d8c1d5ebd9ed8d3 (diff)
fix test failure because of new tracker in create-torrent
Diffstat (limited to 'test/basic-node.js')
-rw-r--r--test/basic-node.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/basic-node.js b/test/basic-node.js
index 614bdbe..c6082aa 100644
--- a/test/basic-node.js
+++ b/test/basic-node.js
@@ -83,7 +83,7 @@ test('client.seed (filesystem path to folder (string))', function (t) {
var client = new WebTorrent({ dht: false, tracker: false })
client.seed(numbersPath, opts, function (torrent) {
t.equal(torrent.infoHash, '80562f38656b385ea78959010e51a2cc9db41ea0')
- t.equal(torrent.magnetURI, 'magnet:?xt=urn:btih:80562f38656b385ea78959010e51a2cc9db41ea0&dn=numbers&tr=udp%3A%2F%2Ftracker.publicbt.com%3A80&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80&tr=udp%3A%2F%2Ftracker.webtorrent.io%3A80&tr=wss%3A%2F%2Ftracker.webtorrent.io')
+ t.equal(torrent.magnetURI, 'magnet:?xt=urn:btih:80562f38656b385ea78959010e51a2cc9db41ea0&dn=numbers&tr=udp%3A%2F%2Ftracker.publicbt.com%3A80&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80&tr=udp%3A%2F%2Fopen.demonii.com%3A1337&tr=udp%3A%2F%2Ftracker.webtorrent.io%3A80&tr=wss%3A%2F%2Ftracker.webtorrent.io')
client.destroy()
})
})