Merge pull request #2194 from overleaf/ho-res-send-status

use sendStatus for status codes, prevents errors in logs

GitOrigin-RevId: 98613a3c894a01eb9112fa9472403caeeae45bc2
This commit is contained in:
Eric Mc Sween
2019-10-15 13:29:40 +00:00
committed by sharelatex
parent 750a4879e7
commit 0e6b455ab0
2 changed files with 6 additions and 3 deletions
@@ -37,7 +37,10 @@ describe('AnalyticsController', function() {
}
})
this.res = { send() {} }
this.res = {
send() {},
sendStatus() {}
}
})
describe('updateEditingSession', function() {