From 5fcd99ba4486966aa08bdba66213744970cc75f8 Mon Sep 17 00:00:00 2001 From: theelk801 Date: Wed, 4 Jun 2025 11:23:10 -0400 Subject: [PATCH] fix test failures --- .../org/mage/test/cards/abilities/keywords/EvokeTest.java | 2 +- .../org/mage/test/cards/single/lrw/MulldrifterTest.java | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/EvokeTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/EvokeTest.java index 2797e335221..6190386f55a 100644 --- a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/EvokeTest.java +++ b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/EvokeTest.java @@ -42,7 +42,7 @@ public class EvokeTest extends CardTestPlayerBase { castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Shriekmaw"); setChoice(playerA, "Cast with Evoke alternative cost: {1}{B} (source: Shriekmaw"); - setChoice(playerA, "When this permanent enters the battlefield, if its evoke cost was paid, its controller sacrifices it."); // stack triggers + setChoice(playerA, "When this permanent enters, if its evoke cost was paid, its controller sacrifices it."); // stack triggers addTarget(playerA, "Silvercoat Lion"); // choice for Shriekmaw Destroy trigger castSpell(1, PhaseStep.POSTCOMBAT_MAIN, playerA, "Exhume"); diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/single/lrw/MulldrifterTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/single/lrw/MulldrifterTest.java index f8590a7dc9a..2c48a315486 100644 --- a/Mage.Tests/src/test/java/org/mage/test/cards/single/lrw/MulldrifterTest.java +++ b/Mage.Tests/src/test/java/org/mage/test/cards/single/lrw/MulldrifterTest.java @@ -51,7 +51,7 @@ public class MulldrifterTest extends CardTestPlayerBase { castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Mulldrifter"); setChoice(playerA, "Cast with Evoke alternative cost: {2}{U} (source: Mulldrifter"); setStopAt(1, PhaseStep.BEGIN_COMBAT); - setChoice(playerA, "When this permanent enters the battlefield, if its evoke cost was paid, its controller sacrifices it"); // stack triggers + setChoice(playerA, "When this permanent enters, if its evoke cost was paid, its controller sacrifices it"); // stack triggers execute(); @@ -67,7 +67,7 @@ public class MulldrifterTest extends CardTestPlayerBase { public void testMulldrifterFlickered() { setStrictChooseMode(true); - // {4}{U} When Mulldrifter enters the battlefield, draw two cards. Evoke {2}{U} + // {4}{U} When Mulldrifter enters, draw two cards. Evoke {2}{U} addCard(Zone.BATTLEFIELD, playerA, "Mulldrifter"); // 2/2 addCard(Zone.BATTLEFIELD, playerA, "Merfolk Looter"); // 1/1 addCard(Zone.BATTLEFIELD, playerA, "Island", 5); @@ -86,4 +86,4 @@ public class MulldrifterTest extends CardTestPlayerBase { assertGraveyardCount(playerA, "Ghostly Flicker", 1); assertHandCount(playerA, 2); // should have drawn 2 cards } -} \ No newline at end of file +}