1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 21:27:24 +08:00

Use better test step names

This commit is contained in:
Bartłomiej Dach 2023-05-04 19:11:51 +02:00
parent 485b7282dc
commit aa7885ab97
No known key found for this signature in database

View File

@ -399,7 +399,7 @@ namespace osu.Game.Tests.Visual.UserInterface
changeRuleset(1);
AddAssert("taiko variant selected", () => SelectedMods.Value.SingleOrDefault() is TaikoModDifficultyAdjust);
AddAssert("shared settings didn't change", () =>
AddAssert("shared settings preserved", () =>
{
var taikoMod = getMod<TaikoModDifficultyAdjust>();
@ -408,7 +408,7 @@ namespace osu.Game.Tests.Visual.UserInterface
taikoMod.OverallDifficulty.Value == setting_change;
});
AddAssert("non-shared settings unchanged", () =>
AddAssert("non-shared settings remain default", () =>
{
var taikoMod = getMod<TaikoModDifficultyAdjust>();