Fix File unit tests

This commit is contained in:
Matt Nadareski
2025-05-02 20:33:51 -04:00
parent df21af5682
commit 1d2e99b246
2 changed files with 5 additions and 16 deletions

View File

@@ -29,6 +29,8 @@ namespace SabreTools.DatItems.Test.Formats
file.SetFieldValue(DatItem.MachineKey, machine);
file.SetFieldValue(DatItem.RemoveKey, (bool?)false);
file.SetFieldValue(DatItem.SourceKey, source);
file.SetFieldValue<Machine>(DatItem.MachineKey, machine);
file.SetFieldValue<Source>(DatItem.SourceKey, source);
Rom actual = file.ConvertToRom();