From f39fab01eba300c1306e65d78a367d17002b9432 Mon Sep 17 00:00:00 2001 From: drmDev Date: Wed, 27 Jul 2016 13:57:19 -0400 Subject: [PATCH] so now ya tell me it wasn't a bug! adjusted test. fixed #2053 --- .../mage/test/cards/replacement/LeylineOfTheVoidTest.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/replacement/LeylineOfTheVoidTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/replacement/LeylineOfTheVoidTest.java index 3cc04e65a29..9ef378862f4 100644 --- a/Mage.Tests/src/test/java/org/mage/test/cards/replacement/LeylineOfTheVoidTest.java +++ b/Mage.Tests/src/test/java/org/mage/test/cards/replacement/LeylineOfTheVoidTest.java @@ -125,6 +125,12 @@ public class LeylineOfTheVoidTest extends CardTestPlayerBase { } + /* + "Leyline of the Void’s second ability doesn’t affect token permanents that would be put into an opponent’s graveyard from the battlefield. + They’ll be put into that graveyard as normal (causing any applicable triggered abilities to trigger), then they’ll cease to exist." + http://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=107682 + + */ @Test public void testMorbidAbilityWithAwakeningZoneTokens() { // At the beginning of your upkeep, you may put a 0/1 colorless Eldrazi Spawn creature token onto the battlefield. @@ -145,7 +151,7 @@ public class LeylineOfTheVoidTest extends CardTestPlayerBase { assertPermanentCount(playerA, "Eldrazi Spawn", 0); assertExileCount(playerB, 0); - assertHandCount(playerB, 0); + assertHandCount(playerB, 1); } }