mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 18:58:00 +00:00
Merge branch 'assorted-fixes' into 'master'
Fixing a test with the new mana ability text in mind. See merge request core-developers/forge!492
This commit is contained in:
@@ -596,7 +596,7 @@ public class GameSimulatorTest extends SimulationTestCase {
|
||||
assertEquals(1, scion.getNetPower());
|
||||
assertEquals(1, scion.getNetToughness());
|
||||
assertTrue(scion.isSick());
|
||||
assertNotNull(findSAWithPrefix(scion, "Sacrifice CARDNAME: Add {C} to your mana pool."));
|
||||
assertNotNull(findSAWithPrefix(scion, "Sacrifice CARDNAME: Add {C}."));
|
||||
|
||||
GameCopier copier = new GameCopier(simGame);
|
||||
Game copy = copier.makeCopy();
|
||||
@@ -605,7 +605,7 @@ public class GameSimulatorTest extends SimulationTestCase {
|
||||
assertEquals(1, scionCopy.getNetPower());
|
||||
assertEquals(1, scionCopy.getNetToughness());
|
||||
assertTrue(scionCopy.isSick());
|
||||
assertNotNull(findSAWithPrefix(scionCopy, "Sacrifice CARDNAME: Add {C} to your mana pool."));
|
||||
assertNotNull(findSAWithPrefix(scionCopy, "Sacrifice CARDNAME: Add {C}."));
|
||||
}
|
||||
|
||||
public void testMarkedDamage() {
|
||||
|
||||
Reference in New Issue
Block a user