diff --git a/forge-gui-desktop/src/test/java/forge/ai/simulation/SimulationTestCase.java b/forge-gui-desktop/src/test/java/forge/ai/simulation/SimulationTestCase.java index f0323c74c60..179f6209ddf 100644 --- a/forge-gui-desktop/src/test/java/forge/ai/simulation/SimulationTestCase.java +++ b/forge-gui-desktop/src/test/java/forge/ai/simulation/SimulationTestCase.java @@ -56,7 +56,12 @@ public class SimulationTestCase extends TestCase { } protected GameSimulator createSimulator(Game game, Player p) { - return new GameSimulator(new SimulationController(new Score(0)), game, p); + return new GameSimulator(new SimulationController(new Score(0)) { + @Override + public boolean shouldRecurse() { + return false; + } + }, game, p); } protected Card findCardWithName(Game game, String name) {