mirror of
https://github.com/correl/mage.git
synced 2024-12-24 03:00:14 +00:00
Merge pull request #3364 from drmDev/master
modified incendiary flow test for #3359
This commit is contained in:
commit
9e7f65bbc8
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.
|
||||
* With Soul-Scar Mage it would die from the -1/-1 counters, not the damage by Incendiary Flow.
|
||||
* Incendiary Flow though worded slightly differently than Magma Spray, still would exile the creature from damage dealt to it
|
||||
*/
|
||||
@Test
|
||||
public void incendiaryFlow_SoulScarMageEffect_ShouldNotExile() {
|
||||
public void incendiaryFlow_SoulScarMageEffect_ShouldExile() {
|
||||
|
||||
/*
|
||||
Soul-Scar Mage {R}
|
||||
|
@ -90,7 +89,7 @@ public class WouldDieExileInsteadTest extends CardTestPlayerBase {
|
|||
assertGraveyardCount(playerA, iFlow, 1);
|
||||
assertPermanentCount(playerB, hGiant, 0);
|
||||
assertPowerToughness(playerA, ssMage, 2, 3); // prowess triggered
|
||||
assertExileCount(playerB, hGiant, 0);
|
||||
assertGraveyardCount(playerB, hGiant, 1);
|
||||
assertGraveyardCount(playerB, hGiant, 0);
|
||||
assertExileCount(playerB, hGiant, 1);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue