1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 19:27:24 +08:00

Use async overload

This commit is contained in:
Dean Herbert 2020-06-10 00:08:48 +09:00
parent 7dc19220e5
commit 880a127228

View File

@ -174,7 +174,7 @@ namespace osu.Game.Tests.Beatmaps.IO
// arbitrary write to non-hashed file
using (var sw = new FileInfo(Directory.GetFiles(extractedFolder, "*.mp3").First()).AppendText())
sw.WriteLine("text");
await sw.WriteLineAsync("text");
using (var zip = ZipArchive.Create())
{