Fix inconsistency in interface implementations

This commit is contained in:
Matt Nadareski
2025-09-07 11:15:26 -04:00
parent bef5749b5e
commit 4b697c7d20
198 changed files with 1330 additions and 1330 deletions

View File

@@ -13,10 +13,10 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream();
SabreTools.Serialization.Wrappers.PortableExecutable pex = new(model, source);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source);
var checker = new DigiGuard();
string? actual = checker.CheckExecutable(file, pex, includeDebug: false);
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);
Assert.Null(actual);
}