[go: nahoru, domu]

Skip to content

Commit

Permalink
Enforce function call spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
CendioOssman committed Sep 6, 2018
1 parent f77f41e commit d80d9d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,6 @@
"ignoreComments": true }],
"comma-spacing": ["error"],
"comma-style": ["error"],
"func-call-spacing": ["error"],
}
}
2 changes: 1 addition & 1 deletion tests/test.rfb.js
Original file line number Diff line number Diff line change
Expand Up @@ -2184,7 +2184,7 @@ describe('Remote Frame Buffer Protocol Client', function() {

describe('WebSocket event handlers', function () {
// message events
it ('should do nothing if we receive an empty message and have nothing in the queue', function () {
it('should do nothing if we receive an empty message and have nothing in the queue', function () {
client._normal_msg = sinon.spy();
client._sock._websocket._receive_data(new Uint8Array([]));
expect(client._normal_msg).to.not.have.been.called;
Expand Down

0 comments on commit d80d9d3

Please sign in to comment.