Skip to content

Commit 51fe23d

Browse files
asambstackfrancisf
authored andcommitted
chore: fix lint errors
1 parent a6ff875 commit 51fe23d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/core/proxy.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ describe('Proxy', () => {
5757
expect(this.response.writeHead.calledOnce).to.be.equal(true);
5858
assert(this.response.writeHead.calledWith(200, {'content-type': 'application/json; charset=utf-8', 'accept': 'application/json', 'WWW-Authenticate': 'Basic realm="WS Reconnect Proxy"'}));
5959
expect(this.response.end.calledOnce).to.be.equal(true);
60-
assert(this.response.writeHead.calledWith(JSON.stringify({"status" : "Running"})));
60+
assert(this.response.writeHead.calledWith(JSON.stringify({'status' : 'Running'})));
6161
});
6262

6363
it('should set connection id', () => {

0 commit comments

Comments
 (0)