Fixed Issue 375.

This commit is contained in:
magenoxx 2011-12-12 14:46:49 +04:00
parent 9fe16d3518
commit 065f1c3190
2 changed files with 16 additions and 3 deletions

View file

@ -31,4 +31,12 @@ public class DamageDistributionTest extends CardTestBase {
assertLife(playerB, 4);
}
@Test
public void testDoubleStrikeUnblocked() {
addCard(Constants.Zone.BATTLEFIELD, playerA, "Warren Instigator");
setLife(playerB, 4);
execute();
assertLife(playerB, 2);
}
}