From b7f73bcda13412f3f4ee4c206df33340cf341234 Mon Sep 17 00:00:00 2001 From: David Dias Date: Thu, 5 Apr 2018 17:00:19 +0100 Subject: [PATCH] test: fix dial error test --- test/connection-wrap.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/connection-wrap.spec.js b/test/connection-wrap.spec.js index aceb2c6..ff141fb 100644 --- a/test/connection-wrap.spec.js +++ b/test/connection-wrap.spec.js @@ -89,7 +89,7 @@ describe('Connection Wrap', () => { }) it('dial error', (done) => { - tcp.dial(multiaddr('/ip4/999.0.0.1/tcp/1234'), (err) => { + tcp.dial(multiaddr('/ip4/127.0.0.1/tcp/22234'), (err) => { expect(err).to.exist() done() })