Remove usage of no longer needed property

This commit is contained in:
David Zhao 2019-08-01 21:26:52 +09:00 committed by GitHub
parent f0941a11b5
commit 6ab9f645a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 7 deletions

View File

@ -97,14 +97,14 @@ public void TestExitSongSelectWithClick()
[Test]
public void TestExitMultiWithEscape()
{
pushAndConfirm(() => new TestMultiplayer(), "multiplayer");
pushAndConfirm(() => new Screens.Multi.Multiplayer(), "multiplayer");
exitViaEscapeAndConfirm();
}
[Test]
public void TestExitMultiWithBackButton()
{
pushAndConfirm(() => new TestMultiplayer(), "multiplayer");
pushAndConfirm(() => new Screens.Multi.Multiplayer(), "multiplayer");
exitViaBackButtonAndConfirm();
}
@ -177,11 +177,6 @@ private class TestSongSelect : PlaySongSelect
public ModSelectOverlay ModSelectOverlay => ModSelect;
}
private class TestMultiplayer : Screens.Multi.Multiplayer
{
protected override bool RequireOnline => false;
}
private class TestLoader : Loader
{
protected override ShaderPrecompiler CreateShaderPrecompiler() => new TestShaderPrecompiler();