This commit is contained in:
Madison Rye Progress
2026-03-18 23:01:19 -07:00
parent 30812e9763
commit 0ec93d0a1d
3 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@ import (
func TestState(t *testing.T) {
Convey("Given a game state", t, func() {
s := New(2, 2)
s := New(2, 2, false)
for x := 0; x < 4; x++ {
for y := 0; y < 4; y++ {
s.cells.kill(Point{x, y})