diff --git a/forge-gui-desktop/src/test/java/forge/ai/simulation/GameSimulatorTest.java b/forge-gui-desktop/src/test/java/forge/ai/simulation/GameSimulatorTest.java index 062cdcb54ce..49c26d51663 100644 --- a/forge-gui-desktop/src/test/java/forge/ai/simulation/GameSimulatorTest.java +++ b/forge-gui-desktop/src/test/java/forge/ai/simulation/GameSimulatorTest.java @@ -501,7 +501,7 @@ public class GameSimulatorTest extends SimulationTestCase { assertTrue(depths.hasCounters()); SpellAbility sa = findSAWithPrefix(thespian, - "{2}, {T}: CARDNAME becomes a copy of target land and gains this ability."); + "{2}, {T}: CARDNAME becomes a copy of target land, except it has this ability."); assertNotNull(sa); sa.getTargets().add(depths); @@ -526,7 +526,7 @@ public class GameSimulatorTest extends SimulationTestCase { game.getAction().checkStateEffects(true); SpellAbility sa = findSAWithPrefix(thespian, - "{2}, {T}: CARDNAME becomes a copy of target land and gains this ability."); + "{2}, {T}: CARDNAME becomes a copy of target land, except it has this ability."); assertNotNull(sa); sa.getTargets().add(thespian); diff --git a/forge-gui-desktop/src/test/java/forge/ai/simulation/SpellAbilityPickerTest.java b/forge-gui-desktop/src/test/java/forge/ai/simulation/SpellAbilityPickerTest.java index 50c5977df39..6a1bd7cf654 100644 --- a/forge-gui-desktop/src/test/java/forge/ai/simulation/SpellAbilityPickerTest.java +++ b/forge-gui-desktop/src/test/java/forge/ai/simulation/SpellAbilityPickerTest.java @@ -235,7 +235,7 @@ public class SpellAbilityPickerTest extends SimulationTestCase { assertEquals("Urborg, Tomb of Yawgmoth", choices.get(1)); // Next, expected to use Thespian's Stage to copy Dark Depths. Plan.Decision d2 = picker.getPlan().getDecisions().get(1); - String expected = "{2}, {T}: Thespian's Stage becomes a copy of target land and gains this ability."; + String expected = "{2}, {T}: Thespian's Stage becomes a copy of target land, except it has this ability."; assertEquals(expected, d2.saRef.toString()); assertTrue(d2.targets.toString().contains("Dark Depths")); }