1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-26 04:43:01 +08:00

Merge pull request #6428 from peppy/fix-ignored-test

Fix ignored song select test
This commit is contained in:
Dan Balasescu 2019-10-09 11:53:07 +09:00 committed by GitHub
commit 09f950ea59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -128,12 +128,10 @@ namespace osu.Game.Tests.Visual.SongSelect
} }
[Test] [Test]
[Ignore("needs fixing")]
public void TestImportUnderDifferentRuleset() public void TestImportUnderDifferentRuleset()
{ {
createSongSelect(); createSongSelect();
changeRuleset(2); addRulesetImportStep(2);
addRulesetImportStep(0);
AddUntilStep("no selection", () => songSelect.Carousel.SelectedBeatmap == null); AddUntilStep("no selection", () => songSelect.Carousel.SelectedBeatmap == null);
} }