test(etapi): variable shadowing causing spurious error

This commit is contained in:
Elian Doran
2025-08-13 19:22:48 +03:00
parent 0c4b751e8f
commit e7fd9371b6

View File

@@ -29,7 +29,7 @@ describe("etapi/patch-note", () => {
})
.expect(201);
const createdNoteId = response.body.note.noteId as string;
createdNoteId = response.body.note.noteId as string;
expect(createdNoteId).toBeTruthy();
});