Make eslint happy

This commit is contained in:
Gerhard Schlager 2018-12-12 11:49:13 +01:00
parent a95d5024b1
commit d9ad32b5fa
1 changed files with 2 additions and 2 deletions

View File

@ -217,15 +217,15 @@ acceptance("Discourse Solved Plugin", {
};
};
// eslint-disable-next-line no-undef
server.get("/t/11.json", () => {
// eslint-disable-line no-undef
return response(
postStreamWithAcceptedAnswerExcerpt("this is an excerpt")
);
});
// eslint-disable-next-line no-undef
server.get("/t/12.json", () => {
// eslint-disable-line no-undef
return response(postStreamWithAcceptedAnswerExcerpt(null));
});
}