diff --git a/src/identify.js b/src/identify.js index cbcf44fa..e1ba95ba 100644 --- a/src/identify.js +++ b/src/identify.js @@ -36,8 +36,8 @@ function Identify (swarm, peerSelf) { stream.end() - // receive their info and how they see us - // send back our stuff + // receive their info and how they see us + // send back our stuff }) swarm.on('connection', function (spdyConnection) { @@ -79,9 +79,9 @@ function Identify (swarm, peerSelf) { }) }) }) - // open a spdy stream - // do the multistream handshake - // send them our data + // open a spdy stream + // do the multistream handshake + // send them our data }) function exportPeer (peer) { diff --git a/tests/swarm-test.js b/tests/swarm-test.js index 44cbe8d2..80711091 100644 --- a/tests/swarm-test.js +++ b/tests/swarm-test.js @@ -45,7 +45,6 @@ afterEach(function (done) { }) experiment('BASE', function () { - test('Open a stream', {timeout: false}, function (done) { var protocol = '/sparkles/3.3.3' var c = new Counter(2, done) @@ -61,13 +60,9 @@ experiment('BASE', function () { }) }) -experiment('IDENTIFY', function () { +experiment('IDENTIFY', function () {}) -}) - -experiment('HARDNESS', function () { - -}) +experiment('HARDNESS', function () {}) function Counter (target, callback) { var c = 0 @@ -80,5 +75,3 @@ function Counter (target, callback) { } } } - -