diff --git a/Mage.Sets/src/mage/sets/gatecrash/MurderInvestigation.java b/Mage.Sets/src/mage/sets/gatecrash/MurderInvestigation.java index f51812e12c5..6ec22f8f4e1 100644 --- a/Mage.Sets/src/mage/sets/gatecrash/MurderInvestigation.java +++ b/Mage.Sets/src/mage/sets/gatecrash/MurderInvestigation.java @@ -55,7 +55,7 @@ public class MurderInvestigation extends CardImpl { public MurderInvestigation(UUID ownerId) { super(ownerId, 21, "Murder Investigation", Rarity.UNCOMMON, new CardType[]{CardType.ENCHANTMENT}, "{1}{W}"); this.expansionSetCode = "GTC"; - + this.subtype.add("Aura"); // Enchant creature you control TargetPermanent auraTarget = new TargetControlledCreaturePermanent(); diff --git a/Mage.Tests/src/test/java/org/mage/test/lki/LastKnownInformationTest.java b/Mage.Tests/src/test/java/org/mage/test/lki/LastKnownInformationTest.java index 7e97f411d01..5449da60a6b 100644 --- a/Mage.Tests/src/test/java/org/mage/test/lki/LastKnownInformationTest.java +++ b/Mage.Tests/src/test/java/org/mage/test/lki/LastKnownInformationTest.java @@ -47,21 +47,22 @@ public class LastKnownInformationTest extends CardTestPlayerBase { castSpell(1, PhaseStep.POSTCOMBAT_MAIN, playerB, "Lightning Bolt", "Safehold Elite"); // choose triggered ability order - playerA.addChoice("When enchanted creature dies"); + setChoice(playerA, "When enchanted creature dies"); castSpell(1, PhaseStep.POSTCOMBAT_MAIN, playerB, "Lightning Bolt", "Safehold Elite", "When enchanted creature dies"); setStopAt(1, PhaseStep.END_TURN); execute(); - assertGraveyardCount(playerB, "Lightning Bolt", 2); + assertGraveyardCount(playerA, "Murder Investigation", 1); assertPermanentCount(playerA, "Safehold Elite", 0); // because enchanted Safehold Elite's P/T was 2/2, Murder Investigation has to put 2 Soldier onto the battlefield assertPermanentCount(playerA, "Soldier", 2); + assertGraveyardCount(playerB, "Lightning Bolt", 2); assertActionCount(playerB, 0); } - + /** * Here we test that Trostani's first ability checks the toughness on resolve. *