Skip to content

Commit

Permalink
Updated names of utilitary methods
Browse files Browse the repository at this point in the history
  • Loading branch information
qjuanp committed Aug 15, 2024
1 parent 5845a66 commit 8e01432
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions board/board_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ func TestRandomInitializationSize(t *testing.T) {
seed := int64(1)

boardResult := NewRandomBoard(rowsExpected, columnsExpected, seed)
rowsResult := boardResult.NumberOfColumns()
columnsResult := boardResult.NumberOfRows()
rowsResult := boardResult.CountColumns()
columnsResult := boardResult.CountRows()

if rowsResult != rowsExpected {
t.Errorf("Rows: %d, wanted %d", rowsResult, rowsExpected)
Expand Down

0 comments on commit 8e01432

Please sign in to comment.