1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 03:22:55 +08:00

Fix test failure due to polluted bindable value from previous test

This commit is contained in:
Dean Herbert 2020-12-18 16:33:55 +09:00
parent bdfeb55dec
commit e6a38ffbce

View File

@ -11,7 +11,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 => currentRoom.Value;
@ -27,7 +27,7 @@ namespace osu.Game.Tests.Visual
[SetUp]
public void Setup() => Schedule(() =>
{
Room.CopyFrom(new Room());
currentRoom.Value = new Room();
});
}
}