Fix tests, migrate Adjuster

This commit is contained in:
Matt Nadareski
2024-03-08 21:12:13 -05:00
parent 2dbe257023
commit c755abf4c0
25 changed files with 159 additions and 554 deletions

View File

@@ -40,15 +40,16 @@ namespace SabreTools.Test.Filtering
/// </summary>
private static DatItem CreateDatItem()
{
return new Rom
var rom = new Rom
{
Name = "foo",
Machine = new Machine
{
Name = "bar",
Description = "bar",
}
};
rom.SetName("foo");
return rom;
}
}
}