mirror of
https://github.com/correl/mage.git
synced 2025-01-13 19:11:33 +00:00
Added player's name to assertGraveyardCount
This commit is contained in:
parent
eb63ea1e32
commit
2f3831599d
1 changed files with 1 additions and 1 deletions
|
@ -1386,7 +1386,7 @@ public abstract class CardTestPlayerAPIImpl extends MageTestPlayerBase implement
|
|||
*/
|
||||
public void assertGraveyardCount(Player player, int count) throws AssertionError {
|
||||
int actual = currentGame.getPlayer(player.getId()).getGraveyard().size();
|
||||
Assert.assertEquals("(Graveyard) Card counts are not equal ", count, actual);
|
||||
Assert.assertEquals("(Graveyard) Card counts for " + player.getName() + " are not equal", count, actual);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue