mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 11:35:35 +08:00
Schedule all of setup to avoid headless test fail
This commit is contained in:
parent
c32fc05f69
commit
09b0a57290
@ -48,7 +48,7 @@ namespace osu.Game.Tests.Visual.Online
|
||||
}
|
||||
|
||||
[SetUp]
|
||||
public void SetUp()
|
||||
public void SetUp() => Schedule(() =>
|
||||
{
|
||||
requestedBuild = null;
|
||||
|
||||
@ -72,8 +72,8 @@ namespace osu.Game.Tests.Visual.Online
|
||||
}
|
||||
};
|
||||
|
||||
Schedule(() => Child = changelog = new TestChangelogOverlay());
|
||||
}
|
||||
Child = changelog = new TestChangelogOverlay();
|
||||
});
|
||||
|
||||
[Test]
|
||||
public void ShowWithNoFetch()
|
||||
|
Loading…
Reference in New Issue
Block a user