Adjusted a test to cast detrimental "forked" spells onto an opponents creatures instead of it own.

This commit is contained in:
Jeff Wadsworth 2023-11-05 20:45:04 -06:00
parent 4f0ff05069
commit af8e790522

View file

@ -63,8 +63,8 @@ public class CopyPermanentSpellTest extends CardTestPlayerBase {
public void testAuraTokenRedirect() { public void testAuraTokenRedirect() {
makeTester(); makeTester();
addCard(Zone.BATTLEFIELD, playerA, "Swamp", 1); addCard(Zone.BATTLEFIELD, playerA, "Swamp", 1);
addCard(Zone.BATTLEFIELD, playerA, "Centaur Courser"); addCard(Zone.BATTLEFIELD, playerB, "Centaur Courser");
addCard(Zone.BATTLEFIELD, playerA, "Hill Giant"); addCard(Zone.BATTLEFIELD, playerB, "Hill Giant");
addCard(Zone.HAND, playerA, "Dead Weight"); addCard(Zone.HAND, playerA, "Dead Weight");
setChoice(playerA, true); setChoice(playerA, true);
@ -73,10 +73,10 @@ public class CopyPermanentSpellTest extends CardTestPlayerBase {
setStopAt(1, PhaseStep.END_TURN); setStopAt(1, PhaseStep.END_TURN);
execute(); execute();
assertPermanentCount(playerA, "Centaur Courser", 1); assertPermanentCount(playerB, "Centaur Courser", 1);
assertPowerToughness(playerA, "Centaur Courser", 1, 1); assertPowerToughness(playerB, "Centaur Courser", 1, 1);
assertPermanentCount(playerA, "Hill Giant", 1); assertPermanentCount(playerB, "Hill Giant", 1);
assertPowerToughness(playerA, "Hill Giant", 1, 1); assertPowerToughness(playerB, "Hill Giant", 1, 1);
assertPermanentCount(playerA, "Dead Weight", 2); assertPermanentCount(playerA, "Dead Weight", 2);
} }