Adding newline style fixes

This commit is contained in:
Angela Zhang 2020-12-14 16:58:43 -06:00 committed by GitHub
parent 9cb0ed3b8f
commit 1af0f79ddf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -207,12 +207,14 @@ namespace osu.Game.Tests.Visual.Online
AddStep("Click normal close button", () => clickDrawable(((TestChannelTabItem)chatOverlay.TabMap[channel1]).CloseButton.Child));
AddAssert("All channels closed", () => !channelManager.JoinedChannels.Any());
}
private void pressControlW()
{
AddStep("Press and hold Control", () => InputManager.PressKey(Key.ControlLeft));
AddStep("Press W", () => InputManager.Key(Key.W));
AddStep("Release Control", () => InputManager.ReleaseKey(Key.ControlLeft));
}
[Test]
public void TestCtrlWShortcut()
{