Skip to content

Commit

Permalink
tests: fix MetaXmlExporterIntegrationTests
Browse files Browse the repository at this point in the history
  • Loading branch information
carmineos committed Nov 28, 2023
1 parent 5ee0feb commit 85ce350
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

using Microsoft.VisualStudio.TestTools.UnitTesting;
using RageLib.GTA5.ResourceWrappers.PC.Meta;
using RageLib.Services;
using System;
using System.Globalization;
using System.IO;
Expand All @@ -21,7 +22,7 @@ public void Export_Always_CorrectlyExportsXml()
{
Thread.CurrentThread.CurrentCulture = CultureInfo.InvariantCulture;

var exporter = new MetaXmlExporter();
var exporter = new MetaXmlExporter(JenkinsDictionary.Shared);
var xmlStream = new MemoryStream();

var rootStructure = TestDataset.MakeDataset();
Expand Down

0 comments on commit 85ce350

Please sign in to comment.