mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-03-21 17:48:28 -05:00
Update BatchInstructionTests.cs
This commit is contained in:
parent
6491f61f74
commit
5bf5023bb9
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user