allow placement of up to 16 snakes on xlarge board (#90)

This commit is contained in:
Torben 2022-06-29 14:26:18 -07:00 committed by GitHub
parent 04a34dd8c7
commit 61aeee31d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 85 additions and 4 deletions

View file

@ -656,7 +656,7 @@ func TestIsKnownBoardSize(t *testing.T) {
}
for _, test := range tests {
result := isKnownBoardSize(&BoardState{Width: test.Width, Height: test.Height})
result := isFixedBoardSize(&BoardState{Width: test.Width, Height: test.Height})
require.Equal(t, test.Expected, result)
}
}