mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
Fixed typo in assertAbility
This commit is contained in:
parent
8bdd8b2bed
commit
20a50af475
1 changed files with 2 additions and 2 deletions
|
@ -905,10 +905,10 @@ public abstract class CardTestPlayerAPIImpl extends MageTestPlayerBase implement
|
|||
|
||||
if (mustHave) {
|
||||
assertTrue("No such ability=" + ability.toString() + ", player=" + player.getName()
|
||||
+ ", cardName" + cardName, found.getAbilities(currentGame).containsRule(ability));
|
||||
+ ", cardName=" + cardName, found.getAbilities(currentGame).containsRule(ability));
|
||||
} else {
|
||||
Assert.assertFalse("Card shouldn't have such ability=" + ability.toString() + ", player=" + player.getName()
|
||||
+ ", cardName" + cardName, found.getAbilities(currentGame).containsRule(ability));
|
||||
+ ", cardName=" + cardName, found.getAbilities(currentGame).containsRule(ability));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue