Update BatchInstructionTests.cs

This commit is contained in:
Kurt 2026-02-17 13:00:39 -06:00
parent 6491f61f74
commit 5bf5023bb9

View File

@ -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;