Fix CEG test

This commit is contained in:
Matt Nadareski
2026-03-17 13:20:30 -04:00
parent 0181917850
commit 53d4757e5c

View File

@@ -14,7 +14,7 @@ namespace BinaryObjectScanner.Test.Protection
Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source);
var checker = new CenegaProtectDVD();
var checker = new CEG();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);
Assert.Null(actual);
}