Skip to content

Commit

Permalink
Add minor format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MathyouMB committed Jun 22, 2024
1 parent d79328c commit cbb5015
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/challenges-platform/services/reviews-service.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ describe("ReviewsService", () => {
describe("when submission exists", () => {
it("succesfully creates a review", async () => {
const submission = await submissionFactory();

const body = "Nice work";

const result = await ReviewsService.create(
Expand All @@ -23,9 +22,10 @@ describe("ReviewsService", () => {
});
describe("when submission does not exist", () => {
it("returns an error", async () => {
const invalidId = -1;
const result = await ReviewsService.create(
Status.REJECTED,
-1,
invalidId,
"bad id",
);

Expand Down

0 comments on commit cbb5015

Please sign in to comment.