Simplified names in Tests

This commit is contained in:
erri120 2019-11-21 16:05:10 +01:00
parent 7583703239
commit 1b26063773
No known key found for this signature in database
GPG Key ID: A8C0A18D8D4D3135
5 changed files with 5 additions and 5 deletions

View File

@ -63,7 +63,7 @@ namespace Wabbajack.Test.ListValidation
Log($"Loading {modlist_path}");
var installer = MO2Installer.LoadFromFile(modlist_path);
var installer = AInstaller.LoadFromFile(modlist_path);
Log($"{installer.Archives.Count} archives to validate");

View File

@ -51,7 +51,7 @@ namespace Wabbajack.Test
protected void Install(MO2Compiler compiler)
{
var modlist = MO2Installer.LoadFromFile(compiler.ModListOutputFile);
var modlist = AInstaller.LoadFromFile(compiler.ModListOutputFile);
var installer = new MO2Installer(compiler.ModListOutputFile, modlist, utils.InstallFolder);
installer.WarnOnOverwrite = false;
installer.DownloadFolder = utils.DownloadsFolder;

View File

@ -60,7 +60,7 @@ namespace Wabbajack.Test
protected void Install(VortexCompiler vortexCompiler)
{
var modList = MO2Installer.LoadFromFile(vortexCompiler.ModListOutputFile);
var modList = AInstaller.LoadFromFile(vortexCompiler.ModListOutputFile);
var installer = new MO2Installer(vortexCompiler.ModListOutputFile, modList, utils.InstallFolder)
{
DownloadFolder = utils.DownloadsFolder,

View File

@ -144,7 +144,7 @@ namespace Wabbajack.Test
private void Install(MO2Compiler compiler)
{
var modlist = MO2Installer.LoadFromFile(compiler.ModListOutputFile);
var modlist = AInstaller.LoadFromFile(compiler.ModListOutputFile);
var installer = new MO2Installer(compiler.ModListOutputFile, modlist, utils.InstallFolder);
installer.DownloadFolder = utils.DownloadsFolder;
installer.GameFolder = utils.GameFolder;

View File

@ -46,7 +46,7 @@ namespace Wabbajack.Test
File.WriteAllLines(Path.Combine(MO2Folder, "ModOrganizer.ini"), new []
{
"[General]",
$"gameName={GameRegistry.Games[this.Game].MO2Name}",
$"gameName={GameRegistry.Games[Game].MO2Name}",
$"gamePath={GameFolder.Replace("\\", "\\\\")}",
$"download_directory={DownloadsFolder}"
});