fixed a test failure

This commit is contained in:
Evan Kranzler 2021-03-09 20:27:05 -05:00
parent 1dfde6d622
commit 93c9b2770a

View file

@ -1665,7 +1665,7 @@ public class VerifyCardDataTest {
// other cards can't have that stats
if (isBasicLandName(card.getName())) {
// lands
if (card.getRarity() != Rarity.LAND) {
if (card.getRarity() != Rarity.LAND && card.getRarity() != Rarity.SPECIAL) {
fail(card, "rarity", "basic land must be Rarity.LAND");
}