1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 18:42:56 +08:00

Fail tests by default

This commit is contained in:
smoogipoo 2020-03-03 12:13:36 +09:00
parent ce7cbf29ca
commit 90c2f7bd89

View File

@ -37,7 +37,7 @@ namespace osu.Game.Tests.Visual
public override void TearDownSteps()
{
AddUntilStep("test passed", () => currentTest?.PassCondition?.Invoke() ?? true);
AddUntilStep("test passed", () => currentTest?.PassCondition?.Invoke() ?? false);
base.TearDownSteps();
}