Use old ctor params

This commit is contained in:
smoogipoo 2020-01-15 14:02:29 +09:00
parent f695b1e055
commit 363d7d724a
1 changed files with 2 additions and 1 deletions

View File

@ -5,6 +5,7 @@
using System.IO;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using NUnit.Framework;
@ -603,7 +604,7 @@ public async Task TestUpdateBeatmapFile()
using (var stream = new MemoryStream())
{
using (var writer = new StreamWriter(stream, leaveOpen: true))
using (var writer = new StreamWriter(stream, Encoding.UTF8, 1024, true))
{
beatmapToUpdate.HitObjects.Clear();
beatmapToUpdate.HitObjects.Add(new HitCircle { StartTime = 5000 });