Skip to content

Commit

Permalink
Update Nhl.Api.Tests/StatisticsTests.cs
Browse files Browse the repository at this point in the history
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
  • Loading branch information
Afischbacher and coderabbitai[bot] authored Sep 21, 2024
1 parent 03c2c8b commit efd974b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Nhl.Api.Tests/StatisticsTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1236,7 +1236,7 @@ public async Task GetGoalieStatisticsBySeasonAndFilterAsync_Returns_Valid_Result
Assert.IsTrue(player.Wins < 40);
Assert.IsTrue(player.GoalsAgainstAverage <= 3.5);
Assert.IsTrue(player.Shutouts > 0);
Assert.IsTrue(player.SavePercentage >= 0.9m || player.Assists > 0);
Assert.IsTrue(player.SavePercentage >= 0.9m || player.PenaltyMinutes > 0);
Assert.IsTrue(player.GoalieFullName.Contains("An"));
Assert.IsTrue(!player.GoalieFullName.Contains("Ze"));
Assert.IsTrue(player.PlayerId != 8471214);
Expand Down

0 comments on commit efd974b

Please sign in to comment.