mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
Fixed unit test that swapped the attacker and blocker
- Also now is a 2/2 blocking a 1/1 so no more confusion
This commit is contained in:
parent
ecaba8dab3
commit
35549bac52
1 changed files with 5 additions and 5 deletions
|
@ -252,15 +252,15 @@ public class AttackBlockRestrictionsTest extends CardTestPlayerBase {
|
||||||
public void testCantBeBlockedTormentedSoul() {
|
public void testCantBeBlockedTormentedSoul() {
|
||||||
addCard(Zone.BATTLEFIELD, playerB, "Tormented Soul");
|
addCard(Zone.BATTLEFIELD, playerB, "Tormented Soul");
|
||||||
|
|
||||||
addCard(Zone.BATTLEFIELD, playerA, "Memnite");
|
addCard(Zone.BATTLEFIELD, playerA, "Flinthoof Boar");
|
||||||
|
|
||||||
attack(2, playerB, "Tormented Soul");
|
attack(4, playerB, "Tormented Soul");
|
||||||
block(2, playerA, "Tormented Soul", "Memnite");
|
block(4, playerA, "Flinthoof Boar", "Tormented Soul");
|
||||||
|
|
||||||
setStopAt(2, PhaseStep.END_TURN);
|
setStopAt(4, PhaseStep.END_TURN);
|
||||||
execute();
|
execute();
|
||||||
|
|
||||||
assertPermanentCount(playerA, "Memnite", 1);
|
assertPermanentCount(playerA, "Flinthoof Boar", 1);
|
||||||
assertPermanentCount(playerB, "Tormented Soul", 1);
|
assertPermanentCount(playerB, "Tormented Soul", 1);
|
||||||
|
|
||||||
assertLife(playerA, 19);
|
assertLife(playerA, 19);
|
||||||
|
|
Loading…
Reference in a new issue