fixed a test failure

This commit is contained in:
Evan Kranzler 2021-04-30 08:32:26 -04:00
parent 8d6ce30626
commit 77d792bbaf
3 changed files with 4 additions and 4 deletions

View file

@ -131,7 +131,7 @@ public class JaceTest extends CardTestPlayerBase {
addCard(Zone.GRAVEYARD, playerA, ancestralVision);
addCard(Zone.HAND, playerA, "Swamp", 1);
activateAbility(3, PhaseStep.PRECOMBAT_MAIN, playerA, "{T}: Draw a card, then discard a card. If there are five or more cards in your graveyard");
activateAbility(3, PhaseStep.PRECOMBAT_MAIN, playerA, "{T}:");
setChoice(playerA, "Swamp");
activateAbility(3, PhaseStep.PRECOMBAT_MAIN, playerA, "-3:");
addTarget(playerA, ancestralVision);

View file

@ -341,7 +341,7 @@ public class ZoneChangeReplacementTest extends CardTestPlayerBase {
activateAbility(2, PhaseStep.PRECOMBAT_MAIN, playerB, "{2}{B}{B}, {T}: Return target creature", "Jace, Vryn's Prodigy");
// {T}: Draw a card, then discard a card. If there are five or more cards in your graveyard, exile Jace, Vryn's Prodigy, then return him to the battefield transformed under his owner's control.
activateAbility(2, PhaseStep.BEGIN_COMBAT, playerB, "{T}: Draw a card, then discard a card. If there are five or more cards in your graveyard");
activateAbility(2, PhaseStep.BEGIN_COMBAT, playerB, "{T}:");
activateAbility(2, PhaseStep.POSTCOMBAT_MAIN, playerB, "+1: Up to one target creature gets -2/-0 until your next turn");
setStopAt(3, PhaseStep.UNTAP);

View file

@ -37,9 +37,9 @@ public class CardsInControllerGraveyardCondition implements Condition {
@Override
public String toString() {
return CardUtil.numberToText(value, "one") + " or more "
return "there are " + CardUtil.numberToText(value, "one") + " or more "
+ (filter == null ? "cards" : filter.getMessage())
+ " are in your graveyard";
+ " in your graveyard";
}
}