Skip to content

Commit

Permalink
Avoid lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
wandersonwhcr committed Apr 28, 2020
1 parent e490c8b commit 2ff1b0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/express-rate-limit-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,7 @@ describe("express-rate-limit node module", () => {
);
app.use((err, req, res, next) => {
res.status(err.code).send(err.message);
next;
next; // ignore lint errors?
});
goodRequest(done);
badRequest(done, () => {
Expand Down

0 comments on commit 2ff1b0c

Please sign in to comment.