1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-13 04:32:57 +08:00

Fix duplicated GlobalSetup attribute on BenchmarkMod

This commit is contained in:
Dean Herbert 2021-09-09 12:39:45 +09:00
parent 9a0dbaa8e3
commit 45a534a1ba

View File

@ -14,9 +14,9 @@ namespace osu.Game.Benchmarks
[Params(1, 10, 100)]
public int Times { get; set; }
[GlobalSetup]
public void GlobalSetup()
public override void SetUp()
{
base.SetUp();
mod = new OsuModDoubleTime();
}