diff --git a/client/coral-admin/src/actions/settings.js b/client/coral-admin/src/actions/settings.js index e4df4adfe..f71730663 100644 --- a/client/coral-admin/src/actions/settings.js +++ b/client/coral-admin/src/actions/settings.js @@ -28,7 +28,7 @@ const handleResp = res => { if (res.status === 401) { throw new Error('Not Authorized to make this request'); } else if (res.status > 399) { - throw new Error('Error! Status ' + res.status); + throw new Error('Error! Status ', res.status); } else if (res.status === 204) { return res.text(); } else { diff --git a/package.json b/package.json index a3656ddba..7b6b66fe5 100644 --- a/package.json +++ b/package.json @@ -46,6 +46,7 @@ "body-parser": "^1.15.2", "debug": "^2.2.0", "ejs": "^2.5.2", + "eslint-config-postcss": "^2.0.2", "express": "^4.14.0", "mongoose": "^4.6.5", "morgan": "^1.7.0", diff --git a/tests/models/comment.js b/tests/models/comment.js index b3f0c0f30..4ebcbbc64 100644 --- a/tests/models/comment.js +++ b/tests/models/comment.js @@ -44,6 +44,4 @@ describe('Comment: models', () => { }); }); }); - - // }); });