Revert reverted segment to fix failure

This commit is contained in:
Salman Ahmed 2021-08-13 15:24:10 +03:00
parent c32ba9e38f
commit 1fed9193f8

View File

@ -99,7 +99,7 @@ namespace osu.Game.Tests.Visual.Multiplayer
AddUntilStep("all interactive elements removed", () => this.ChildrenOfType<Player>().All(p =>
!p.ChildrenOfType<PlayerSettingsOverlay>().Any() &&
!p.ChildrenOfType<HoldForMenuButton>().Any() &&
!p.ChildrenOfType<SongProgressBar>().Single().ShowHandle));
p.ChildrenOfType<SongProgressBar>().SingleOrDefault()?.ShowHandle == false));
}
[Test]