Skip to content

Commit 61d431b

Browse files
authored
Merge branch 'main' into review-branch
2 parents b4afaf3 + 51fe23d commit 61d431b

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)