From 5bf5023bb968817dcd7470b96a77ccb672c23512 Mon Sep 17 00:00:00 2001 From: Kurt Date: Tue, 17 Feb 2026 13:00:39 -0600 Subject: [PATCH] Update BatchInstructionTests.cs --- Tests/PKHeX.Core.Tests/PKM/BatchInstructionTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tests/PKHeX.Core.Tests/PKM/BatchInstructionTests.cs b/Tests/PKHeX.Core.Tests/PKM/BatchInstructionTests.cs index ef8855bce..418ecbeb1 100644 --- a/Tests/PKHeX.Core.Tests/PKM/BatchInstructionTests.cs +++ b/Tests/PKHeX.Core.Tests/PKM/BatchInstructionTests.cs @@ -76,7 +76,7 @@ public void ProcessDelegateReturnsTrueWhenModified() var pk = CreateTestPK7(100); var editor = new BatchEditor(); - bool modified = editor.Process(pk, [], static p => + bool modified = editor.Process(pk, [], [], static p => { p.EXP = 200; return true; @@ -91,7 +91,7 @@ public void ProcessDelegateUpdatesExpWhenModified() var pk = CreateTestPK7(100); var editor = new BatchEditor(); - _ = editor.Process(pk, [], static p => + _ = editor.Process(pk, [], [], static p => { p.EXP = 200; return true;