fixed Mistform creature types and verify test for phyrexian mana

This commit is contained in:
Timothy Rice 2017-04-11 13:58:01 -05:00
parent 46d44f84e3
commit 89ee5eeeae
2 changed files with 2 additions and 2 deletions

View file

@ -211,7 +211,7 @@ public class VerifyCardDataTest {
cost = null;
}
if (cost != null) {
cost = cost.replaceAll("P\\}", "/P}");
cost = cost.replaceAll("P\\}", "P}");
}
if (!Objects.equals(cost, expected)) {
fail(card, "cost", cost + " != " + expected);