From c745e654f90751c67214c5f4be8fed05e9bfef2d Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Thu, 7 Jun 2018 17:59:09 +0200 Subject: [PATCH] * Fixed test that sometimes failed on onfortunate mana tapping done by computer player. --- .../cards/abilities/keywords/ConstellationTest.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/ConstellationTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/ConstellationTest.java index da97432299..0d81d1ae66 100644 --- a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/ConstellationTest.java +++ b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/ConstellationTest.java @@ -193,12 +193,12 @@ public class ConstellationTest extends CardTestPlayerBase { // 613.7 -- dependacy effects (Mephidross Vampire must ALWAYS wait Daxos effect, not timestamp) addCard(Zone.HAND, playerA, daxosCard, 1); addCard(Zone.BATTLEFIELD, playerA, "Swamp", 4); + // Each creature you control is a Vampire in addition to its other creature types + addCard(Zone.HAND, playerA, "Mephidross Vampire", 1); // {4}{B}{B} + addCard(Zone.BATTLEFIELD, playerA, "Swamp", 8); // - addCard(Zone.HAND, playerA, "Mephidross Vampire", 1); // Each creature you control is a Vampire in addition to its other creature types - addCard(Zone.BATTLEFIELD, playerA, "Swamp", 6); - // - addCard(Zone.HAND, playerA, "Archetype of Courage", 1); // Enchantment to trigger Daxos - addCard(Zone.BATTLEFIELD, playerA, "Plains", 4); + addCard(Zone.HAND, playerA, "Archetype of Courage", 1); // Enchantment {1}{W}{W} to trigger Daxos + addCard(Zone.BATTLEFIELD, playerA, "Plains", 2); // dax cast castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, daxosCard); @@ -223,7 +223,7 @@ public class ConstellationTest extends CardTestPlayerBase { @Test public void test_DaxosGotBoostAndNewTypeByDependencyEffects() { - playDaxosAndVampire(false); + playDaxosAndVampire(false); // sfails sometimes playDaxosAndVampire(true); } }