mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
modified incendiary flow test for #3359
This commit is contained in:
parent
6f14f34d10
commit
f992c212eb
1 changed files with 4 additions and 5 deletions
|
@ -53,11 +53,10 @@ public class WouldDieExileInsteadTest extends CardTestPlayerBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Incendiary Flow only exiles if a creature dealt damage by it would die.
|
* Incendiary Flow though worded slightly differently than Magma Spray, still would exile the creature from damage dealt to it
|
||||||
* With Soul-Scar Mage it would die from the -1/-1 counters, not the damage by Incendiary Flow.
|
|
||||||
*/
|
*/
|
||||||
@Test
|
@Test
|
||||||
public void incendiaryFlow_SoulScarMageEffect_ShouldNotExile() {
|
public void incendiaryFlow_SoulScarMageEffect_ShouldExile() {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Soul-Scar Mage {R}
|
Soul-Scar Mage {R}
|
||||||
|
@ -90,7 +89,7 @@ public class WouldDieExileInsteadTest extends CardTestPlayerBase {
|
||||||
assertGraveyardCount(playerA, iFlow, 1);
|
assertGraveyardCount(playerA, iFlow, 1);
|
||||||
assertPermanentCount(playerB, hGiant, 0);
|
assertPermanentCount(playerB, hGiant, 0);
|
||||||
assertPowerToughness(playerA, ssMage, 2, 3); // prowess triggered
|
assertPowerToughness(playerA, ssMage, 2, 3); // prowess triggered
|
||||||
assertExileCount(playerB, hGiant, 0);
|
assertGraveyardCount(playerB, hGiant, 0);
|
||||||
assertGraveyardCount(playerB, hGiant, 1);
|
assertExileCount(playerB, hGiant, 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue