Skip to content

Commit 252dc78

Browse files
author
hirsch88
committed
fix test
1 parent d782a3e commit 252dc78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/unit/core/api/extendExpressResponse.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ describe('extendExpressResponse', () => {
8989
test('Should create to correct response format', () => {
9090
extendExpressResponse(req, res, next);
9191
res.destroyed();
92-
expect(res.status).toHaveBeenCalledWith(204);
92+
expect(res.status).toHaveBeenCalledWith(200);
9393
expect(res.json).toHaveBeenCalledWith({
9494
success: true,
9595
data: null

0 commit comments

Comments
 (0)