1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-21 12:47:44 +08:00

some changes to the testcase

This commit is contained in:
Jorolf 2017-04-04 17:17:37 +02:00
parent 58f8dc8254
commit 078d44aec3

View File

@ -44,7 +44,7 @@ namespace osu.Desktop.VisualTests.Tests
},
});
AddStep("new retry/fail values", newRetryAndFailValues);
AddRepeatStep("new retry/fail values", newRetryAndFailValues, 10);
AddStep("new ratings", newRatings);
}
@ -57,9 +57,7 @@ namespace osu.Desktop.VisualTests.Tests
lastRange += 100;
}
private void newRatings()
{
details.Ratings = Enumerable.Range(1, 10);
}
private void newRatings() => details.Ratings = Enumerable.Range(1, 10);
}
}