Rename ModSelect{Screen -> Overlay} in place of removed old design

This commit is contained in:
Bartłomiej Dach
2022-05-10 22:29:57 +02:00
parent c4c7556fb2
commit 76c63f1d0a
14 changed files with 76 additions and 76 deletions

View File

@ -172,7 +172,7 @@ namespace osu.Game.Tests.Visual.Multiplayer
AddUntilStep("mod select contents loaded",
() => this.ChildrenOfType<ModColumn>().Any() && this.ChildrenOfType<ModColumn>().All(col => col.IsLoaded && col.ItemsLoaded));
AddUntilStep("mod select contains only double time mod",
() => this.ChildrenOfType<UserModSelectScreen>()
() => this.ChildrenOfType<UserModSelectOverlay>()
.SingleOrDefault()?
.ChildrenOfType<ModPanel>()
.SingleOrDefault(panel => !panel.Filtered.Value)?.Mod is OsuModDoubleTime);