From f1bbc16a757f94df3ab739ced43d9d0602c45a1a Mon Sep 17 00:00:00 2001 From: drmDev <dmontur1@gmail.com> Date: Thu, 3 Mar 2016 20:33:50 -0500 Subject: [PATCH] Fixed disrupting shoal test for CMC 5 --- .../abilities/oneshot/counterspell/DisruptingShoalTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/oneshot/counterspell/DisruptingShoalTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/oneshot/counterspell/DisruptingShoalTest.java index aa3e257c2f..5900a91788 100644 --- a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/oneshot/counterspell/DisruptingShoalTest.java +++ b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/oneshot/counterspell/DisruptingShoalTest.java @@ -173,14 +173,14 @@ public class DisruptingShoalTest extends CardTestPlayerBase { castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Air Elemental"); castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerB, "Disrupting Shoal", "Air Elemental", "Air Elemental"); - playerB.addChoice("Yes"); // use alternate costs = 3 CMC = Away + playerB.addChoice("Yes"); // use alternate costs = 2 or 3 CMC = Far // Away, not the combined cost! setStopAt(1, PhaseStep.CLEANUP); execute(); assertExileCount(playerB, 1); // Far // Away should be exiled as part of Disrupting alternative cost assertGraveyardCount(playerB,"Disrupting Shoal", 1); - assertPermanentCount(playerA, "Air Elemental", 0); // should have been countered by Shoal - assertGraveyardCount(playerA, "Air Elemental", 1); + assertPermanentCount(playerA, "Air Elemental", 1); // should NOT have been countered by Shoal + assertGraveyardCount(playerA, "Air Elemental", 0); } } \ No newline at end of file