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-04-11 09:18:04 +0300
committerFeross Aboukhadijeh <feross@feross.org>2015-04-11 09:18:04 +0300
commitb4ee1d4706eff6ccf8cf6b8c34f9ea424737a6f2 (patch)
tree6873f2525e05344a76d5ca9f076a7e851d25ab96 /test/blocklist.js
parent9cdb94e92feab5784f67f660816034a99cc0ee13 (diff)
Breaking: rename "blocked-peer" event to "blockedPeer"
Diffstat (limited to 'test/blocklist.js')
-rw-r--r--test/blocklist.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/blocklist.js b/test/blocklist.js
index 1d2fe68..b86f828 100644
--- a/test/blocklist.js
+++ b/test/blocklist.js
@@ -16,7 +16,7 @@ leavesParsed.announce = []
leavesParsed.announceList = []
function assertBlocked (t, torrent, addr) {
- torrent.once('blocked-peer', function (_addr) {
+ torrent.once('blockedPeer', function (_addr) {
t.equal(addr, _addr)
})
t.notOk(torrent.addPeer(addr))