tests: real fix of Auratouched Mage - miss draw card effect (#9462)

This commit is contained in:
Oleg Agafonov 2023-06-18 16:50:51 +04:00
parent b30e9ec348
commit 38be371c25
2 changed files with 35 additions and 12 deletions

View file

@ -9,6 +9,7 @@ import mage.abilities.Ability;
import mage.constants.PutCards;
import mage.game.Game;
import mage.game.events.GameEvent;
import mage.util.CardUtil;
import org.apache.log4j.Logger;
/**
@ -142,6 +143,6 @@ public class SpellStack extends ArrayDeque<StackObject> {
@Override
public String toString() {
return this.size() + (this.isEmpty() ? "" : " (top: " + this.getFirst().toString() + ")");
return this.size() + (this.isEmpty() ? "" : " (top: " + CardUtil.substring(this.getFirst().toString(), 100) + ")");
}
}