Fix tests

This commit is contained in:
Timothy Baldridge 2020-04-26 22:22:58 -06:00
parent 5f35166895
commit 6449985185

View File

@ -211,7 +211,7 @@ namespace Wabbajack.BuildServer.Test
await using (var fs = modListPath.Create())
{
using var za = new ZipArchive(fs, ZipArchiveMode.Create);
var entry = za.CreateEntry("modlist.json");
var entry = za.CreateEntry("modlist");
await using var es = entry.Open();
ModListData.ToJson(es);
}