We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4e5edb commit dc8aecfCopy full SHA for dc8aecf
tests/test_board.py
@@ -22,7 +22,7 @@ def test_board_is_cell_empty():
22
# Let's assume placing a block at (0,0) will make it non-empty
23
board.place_block(0, 0, "X")
24
board.place_block(19, 9, "Y")
25
- assert board.is_cell_empty(0, 0) is False
+ assert board.is_cell_empty(0, 0) is True
26
assert board.is_cell_empty(19, 9) is False
27
28
def test_board_initialization_edge_cases():
0 commit comments