From 53d4757e5cfd0a805b13b3dadb1d1f80a7cb1cd8 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Tue, 17 Mar 2026 13:20:30 -0400 Subject: [PATCH] Fix CEG test --- BinaryObjectScanner.Test/Protection/CEGTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BinaryObjectScanner.Test/Protection/CEGTests.cs b/BinaryObjectScanner.Test/Protection/CEGTests.cs index d982649d..75575e36 100644 --- a/BinaryObjectScanner.Test/Protection/CEGTests.cs +++ b/BinaryObjectScanner.Test/Protection/CEGTests.cs @@ -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); }