Skip to content

Commit

Permalink
Fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Rhydian Jenkins committed Feb 16, 2024
1 parent d1a9967 commit 0b51d76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/board/board.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func New() Board {
func (board Board) CalculatePossibleValues(x, y int) []int {
tile := board.tiles[x][y]

if tile.IsEmpty() {
if !tile.IsEmpty() {
return []int{tile.value}
}

Expand Down

0 comments on commit 0b51d76

Please sign in to comment.