Change multiplayer tests to have null room by default

This commit is contained in:
Dean Herbert
2020-07-09 18:55:10 +09:00
parent 7720f928c8
commit 43624381bf
10 changed files with 24 additions and 11 deletions

View File

@ -10,7 +10,7 @@ namespace osu.Game.Tests.Visual
public abstract class MultiplayerTestScene : ScreenTestScene
{
[Cached]
private readonly Bindable<Room> currentRoom = new Bindable<Room>(new Room());
private readonly Bindable<Room> currentRoom = new Bindable<Room>();
protected Room Room
{