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:
Simown 2017-04-22 14:52:16 +01:00
parent ecaba8dab3
commit 35549bac52

View file

@ -252,15 +252,15 @@ public class AttackBlockRestrictionsTest extends CardTestPlayerBase {
public void testCantBeBlockedTormentedSoul() {
addCard(Zone.BATTLEFIELD, playerB, "Tormented Soul");
addCard(Zone.BATTLEFIELD, playerA, "Memnite");
addCard(Zone.BATTLEFIELD, playerA, "Flinthoof Boar");
attack(2, playerB, "Tormented Soul");
block(2, playerA, "Tormented Soul", "Memnite");
attack(4, playerB, "Tormented Soul");
block(4, playerA, "Flinthoof Boar", "Tormented Soul");
setStopAt(2, PhaseStep.END_TURN);
setStopAt(4, PhaseStep.END_TURN);
execute();
assertPermanentCount(playerA, "Memnite", 1);
assertPermanentCount(playerA, "Flinthoof Boar", 1);
assertPermanentCount(playerB, "Tormented Soul", 1);
assertLife(playerA, 19);