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

@ -48,7 +48,7 @@ namespace osu.Game.Tests.Visual.Multiplayer
[SetUp]
public void Setup() => Schedule(() =>
{
Room.CopyFrom(new Room());
Room = new Room();
});
[SetUpSteps]