so now ya tell me it wasn't a bug! adjusted test. fixed #2053

This commit is contained in:
drmDev 2016-07-27 13:57:19 -04:00
parent 23eb555f59
commit f39fab01eb

View file

@ -125,6 +125,12 @@ public class LeylineOfTheVoidTest extends CardTestPlayerBase {
}
/*
"Leyline of the Voids second ability doesnt affect token permanents that would be put into an opponents graveyard from the battlefield.
Theyll be put into that graveyard as normal (causing any applicable triggered abilities to trigger), then theyll 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);
}
}