correction de deux tests de bestscore
continuous-integration/drone/push Build is passing Details

pull/111/head
Remi NEVEU 11 months ago
parent 1bd4021ec9
commit e5fb6eba95

@ -55,7 +55,7 @@ namespace Tests
var bestScore = new BestScore(myMap.Name, myPlayer, 0, 10); var bestScore = new BestScore(myMap.Name, myPlayer, 0, 10);
bestScore.UpdateScore(5); bestScore.UpdateScore(5);
Assert.Equal(5, bestScore.Score); Assert.Equal(15, bestScore.Score);
} }
[Fact] [Fact]
@ -67,7 +67,7 @@ namespace Tests
var bestScore = new BestScore(myMap.Name, myPlayer, 0, 5); var bestScore = new BestScore(myMap.Name, myPlayer, 0, 5);
bestScore.UpdateScore(10); bestScore.UpdateScore(10);
Assert.Equal(10, bestScore.Score); Assert.Equal(15, bestScore.Score);
} }
} }
} }

Loading…
Cancel
Save