Skip to content

Commit

Permalink
test: removed protocolVersion private api from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rauchg committed Aug 13, 2012
1 parent c797d2a commit ab2a0b6
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions test/transports.websocket.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ module.exports = {

io.set('transports', ['websocket']);
io.sockets.on('connection', function (socket) {
socket.manager.transports[socket.id].protocolVersion.should.equal('hixie-76');
ws.finishClose();
cl.end();
io.server.close();
Expand All @@ -62,7 +61,6 @@ module.exports = {

io.set('transports', ['websocket']);
io.sockets.on('connection', function (socket) {
socket.manager.transports[socket.id].protocolVersion.should.equal('07-12');
cl.end();
io.server.close();
done();
Expand All @@ -88,7 +86,6 @@ module.exports = {
io.set('transports', ['websocket']);

io.sockets.on('connection', function (socket) {
socket.manager.transports[socket.id].protocolVersion.should.equal('16');
cl.end();
io.server.close();
done();
Expand Down

0 comments on commit ab2a0b6

Please sign in to comment.