1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-02 03:18:09 -09:00

whoops... fix test

This commit is contained in:
drmDev 2016-03-17 08:28:28 -04:00
parent eb9747d0d1
commit ea961d3cfc

View file

@ -32,7 +32,7 @@ public class BecomesBlockedTest extends CardTestPlayerBase {
attack(1, playerA, "Rabid Elephant");
block(1, playerB, "Savannah Lions", "Rabid Elephant");
//block(1, playerB, "Hill Giant", "Rabid Elephant");
block(1, playerB, "Hill Giant", "Rabid Elephant");
// test passes if PhaseStep ends at DECLARE_BLOCKERS
//setStopAt(1, PhaseStep.DECLARE_BLOCKERS);
@ -40,6 +40,6 @@ public class BecomesBlockedTest extends CardTestPlayerBase {
execute();
// blocked by 2 creatures, so gets +2/+2 twice, making it 7/8
assertPowerToughness(playerA, "Rabid Elephant", 3, 4);
assertPowerToughness(playerA, "Rabid Elephant", 7, 8);
}
}