Reset player state on setup

This commit is contained in:
iiSaLMaN
2019-08-04 18:28:40 +03:00
parent 91f35dde58
commit f5daf98aa5

View File

@ -41,7 +41,12 @@ namespace osu.Game.Tests.Visual.Gameplay
}
[SetUp]
public void SetUp() => leaderboard.ClearScores();
public void SetUp()
{
leaderboard.ClearScores();
leaderboard.PlayerPosition = 1;
playerScore.Value = 1222333;
}
[Test]
public void TestPlayerScore()