remove skip, fix error with CreaturesYouControlCount (#13855)

This commit is contained in:
theelk801 2025-07-14 19:48:27 -04:00
parent fb4e1b8b7e
commit 69e6b718ec
2 changed files with 2 additions and 2 deletions

View file

@ -87,7 +87,7 @@ public class VerifyCardDataTest {
private static String FULL_ABILITIES_CHECK_SET_CODES = ""; // check ability text due mtgjson, can use multiple sets like MAT;CMD or * for all private static String FULL_ABILITIES_CHECK_SET_CODES = ""; // check ability text due mtgjson, can use multiple sets like MAT;CMD or * for all
private static boolean CHECK_ONLY_ABILITIES_TEXT = false; // use when checking text locally, suppresses unnecessary checks and output messages private static boolean CHECK_ONLY_ABILITIES_TEXT = false; // use when checking text locally, suppresses unnecessary checks and output messages
private static final boolean CHECK_COPYABLE_FIELDS = false; // disable for better verify test performance TODO: this is failing on the remote build, needs to be investigated see https://github.com/magefree/mage/issues/13855 private static final boolean CHECK_COPYABLE_FIELDS = true; // disable for better verify test performance
// for automated local testing support // for automated local testing support
static { static {

View file

@ -29,7 +29,7 @@ public enum CreaturesYouControlCount implements DynamicValue {
@Override @Override
public CreaturesYouControlCount copy() { public CreaturesYouControlCount copy() {
return PLURAL; return this;
} }
@Override @Override