mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
fixed a test failure
This commit is contained in:
parent
1dfde6d622
commit
93c9b2770a
1 changed files with 1 additions and 1 deletions
|
@ -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");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue