diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/DiscardTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/DiscardTest.java index 5ebbe02942..0b9d330d1d 100644 --- a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/DiscardTest.java +++ b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/DiscardTest.java @@ -48,18 +48,17 @@ public class DiscardTest extends CardTestPlayerBase { addCard(Zone.BATTLEFIELD, playerA, "Forest", 1); addCard(Zone.HAND, playerA, "Tranquil Thicket"); - addCard(Zone.BATTLEFIELD, playerB, "Rest in Peace", 1); - activateAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Cycling {G} ({G},Discard {this}: Draw a card.)"); + activateAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Cycling {G}"); //cycling ability setStopAt(1, PhaseStep.BEGIN_COMBAT); execute(); assertLife(playerA, 20); assertLife(playerB, 20); - assertHandCount(playerA, "Tranquil Thicket", 0); - assertExileCount("Tranquil Thicket", 1); + assertExileCount("Tranquil Thicket", 1); //exiled by Rest in Peace + assertHandCount(playerA, "Tranquil Thicket", 0); //should be exiled assertHandCount(playerA, 1); // the card drawn by Cycling }