1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 09:17:51 +08:00

Remove redundant string interpolation to fix CI

This commit is contained in:
Berkan Diler 2020-05-23 17:01:34 +02:00
parent edc46d1dce
commit de60d509e8

View File

@ -19,7 +19,7 @@ namespace osu.Game.Benchmarks
public override void SetUp()
{
using (var resources = new DllResourceStore(typeof(TestResources).Assembly))
using (var archive = resources.GetStream($"Resources/Archives/241526 Soleily - Renatus.osz"))
using (var archive = resources.GetStream("Resources/Archives/241526 Soleily - Renatus.osz"))
using (var reader = new ZipArchiveReader(archive))
reader.GetStream("Soleily - Renatus (Gamu) [Insane].osu").CopyTo(beatmapStream);
}