Skip to content

Commit

Permalink
Making linter happy.
Browse files Browse the repository at this point in the history
  • Loading branch information
theturtle32 committed Jan 17, 2015
1 parent cda940b commit 57789c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit/websocketFrame.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var test = require('tape');
var bufferEqual = require('buffer-equal');
var WebSocketFrame = require('../../lib/WebSocketFrame');

test("Serializing a WebSocket Frame with no data", function(t) {
test('Serializing a WebSocket Frame with no data', function(t) {
t.plan(2);

// WebSocketFrame uses a per-connection buffer for the mask bytes
Expand All @@ -19,7 +19,7 @@ test("Serializing a WebSocket Frame with no data", function(t) {
frame.opcode = 0x09; // WebSocketFrame.PING
t.doesNotThrow(
function() { frameBytes = frame.toBuffer(true); },
"should not throw an error"
'should not throw an error'
);

t.assert(
Expand Down

0 comments on commit 57789c1

Please sign in to comment.