mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +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) {
|
if (mustHave) {
|
||||||
assertTrue("No such ability=" + ability.toString() + ", player=" + player.getName()
|
assertTrue("No such ability=" + ability.toString() + ", player=" + player.getName()
|
||||||
+ ", cardName" + cardName, found.getAbilities(currentGame).containsRule(ability));
|
+ ", cardName=" + cardName, found.getAbilities(currentGame).containsRule(ability));
|
||||||
} else {
|
} else {
|
||||||
Assert.assertFalse("Card shouldn't have such ability=" + ability.toString() + ", player=" + player.getName()
|
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