Skip to content

Commit

Permalink
fix: typo in game_test
Browse files Browse the repository at this point in the history
  • Loading branch information
dechristopher committed Feb 20, 2021
1 parent 8f622c7 commit 06cd9d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions game_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ func TestInsufficientMaterial(t *testing.T) {
}
if g.Outcome() != Draw || g.Method() != InsufficientMaterial {
log.Println(g.Position().Board().Draw())
t.Fatalf("game: %s should automatically draw by insufficent material", o)
t.Fatalf("game: %s should automatically draw by insufficient material", o)
}
}
}
Expand All @@ -239,7 +239,7 @@ func TestSufficientMaterial(t *testing.T) {
}
if g.Outcome() != NoOutcome {
log.Println(g.Position().Board().Draw())
t.Fatalf("game: %s should not find insufficent material", o)
t.Fatalf("game: %s should not find insufficient material", o)
}
}
}
Expand Down

0 comments on commit 06cd9d0

Please sign in to comment.