Skip to content

Commit 0076f5d

Browse files
committed
lint fix
1 parent 6d3e4bf commit 0076f5d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/component-tests/apiGateway-tests/get-letters.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ test.describe("API Gateway Tests To Get List Of Pending Letters", () => {
3636
}
3737
expect(responseBody.data.length).toBeGreaterThanOrEqual(1);
3838

39-
responseBody.data.forEach((letter) => {
39+
for (const letter of responseBody.data) {
4040
expect(letter.attributes.sha256Hash).toBeDefined();
4141
expect(letter.attributes.sha256Hash).not.toBeNull();
42-
});
42+
}
4343
});
4444

4545
test("GET /letters retrieve letter should match SHA256 from GET /letter{id} of the same letter", async ({ request }) => {

0 commit comments

Comments
 (0)