remove temporary verify skip

This commit is contained in:
theelk801 2025-08-14 14:07:42 -04:00
parent 88dae5ff4b
commit 355e8c15bc

View file

@ -1018,9 +1018,6 @@ public class VerifyCardDataTest {
// CHECK: unknown set or wrong name // CHECK: unknown set or wrong name
for (ExpansionSet set : sets) { for (ExpansionSet set : sets) {
if ("TLE".equals(set.getCode())) { // temporary
continue;
}
if (set.getSetType().equals(SetType.CUSTOM_SET)) { if (set.getSetType().equals(SetType.CUSTOM_SET)) {
// skip unofficial sets like Star Wars // skip unofficial sets like Star Wars
continue; continue;
@ -2081,7 +2078,6 @@ public class VerifyCardDataTest {
} }
} }
} }
private void checkSubtypes(Card card, MtgJsonCard ref) { private void checkSubtypes(Card card, MtgJsonCard ref) {
if (skipListHaveName(SKIP_LIST_SUBTYPE, card.getExpansionSetCode(), card.getName())) { if (skipListHaveName(SKIP_LIST_SUBTYPE, card.getExpansionSetCode(), card.getName())) {
return; return;