Skip to content

Commit 320dcc4

Browse files
committed
tests: fix tests
1 parent 4794960 commit 320dcc4

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/services/__tests__/board-helper.test.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ describe("getCell", () => {
1111
it("should return the correct case id for B1", () => {
1212
expect(getCell(1, 2)).toBe("B1");
1313
});
14-
// Incorrect test
15-
it("should return the correct case id for F10", () => {
16-
expect(getCell(10, 10)).toBe("F10");
14+
it("should return the correct case id for J10", () => {
15+
expect(getCell(10, 10)).toBe("J10");
1716
});
1817
});

0 commit comments

Comments
 (0)