1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-20 03:19:52 +08:00

Revert "Fix failing test case"

This reverts commit c29cc78853.
This commit is contained in:
Dean Herbert
2022-02-11 15:19:55 +09:00
Unverified
parent 92e22c57a7
commit f049f175d5
@@ -457,12 +457,10 @@ namespace osu.Game.Tests.Visual.UserInterface
public override ModType Type => ModType.Conversion;
}
private class TestUnimplementedModOsuRuleset : OsuRuleset, ILegacyRuleset
private class TestUnimplementedModOsuRuleset : OsuRuleset
{
public override string ShortName => "unimplemented";
int ILegacyRuleset.LegacyID => -1;
public override IEnumerable<Mod> GetModsFor(ModType type)
{
if (type == ModType.Conversion) return base.GetModsFor(type).Concat(new[] { new TestUnimplementedMod() });