diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/dynamicvalue/PartyCountTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/dynamicvalue/PartyCountTest.java index 83d435d9569..5a41094ac6c 100644 --- a/Mage.Tests/src/test/java/org/mage/test/cards/dynamicvalue/PartyCountTest.java +++ b/Mage.Tests/src/test/java/org/mage/test/cards/dynamicvalue/PartyCountTest.java @@ -108,4 +108,20 @@ public class PartyCountTest extends CardTestPlayerBase { assertLife(playerA, 28); } + + @Test + public void testChangelings() { + addCard(Zone.BATTLEFIELD, playerA, "Plains", 5); + addCard(Zone.BATTLEFIELD, playerA, "Impostor of the Sixth Pride", 4); + addCard(Zone.HAND, playerA, shpd); + + castSpell(1, PhaseStep.POSTCOMBAT_MAIN, playerA, shpd); + + setStopAt(1, PhaseStep.END_TURN); + setStrictChooseMode(true); + execute(); + assertAllCommandsUsed(); + + assertLife(playerA, 28); + } }