mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-04-27 19:17:19 -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 pk = CreateTestPK7(100);
|
||||||
var editor = new BatchEditor();
|
var editor = new BatchEditor();
|
||||||
|
|
||||||
bool modified = editor.Process(pk, [], static p =>
|
bool modified = editor.Process(pk, [], [], static p =>
|
||||||
{
|
{
|
||||||
p.EXP = 200;
|
p.EXP = 200;
|
||||||
return true;
|
return true;
|
||||||
|
|
@ -91,7 +91,7 @@ public void ProcessDelegateUpdatesExpWhenModified()
|
||||||
var pk = CreateTestPK7(100);
|
var pk = CreateTestPK7(100);
|
||||||
var editor = new BatchEditor();
|
var editor = new BatchEditor();
|
||||||
|
|
||||||
_ = editor.Process(pk, [], static p =>
|
_ = editor.Process(pk, [], [], static p =>
|
||||||
{
|
{
|
||||||
p.EXP = 200;
|
p.EXP = 200;
|
||||||
return true;
|
return true;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user