Skip to content

Commit

Permalink
tests: fixed goldberry test
Browse files Browse the repository at this point in the history
  • Loading branch information
JayDi85 committed Jan 20, 2024
1 parent 8e395f9 commit 5229cf3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,15 @@ public void testCounterAlreadyOnGoldberry() {
addCounters(1, PhaseStep.PRECOMBAT_MAIN, playerA, island, counter, 2);
addCounters(1, PhaseStep.PRECOMBAT_MAIN, playerA, goldberry, counter, 1);

// nothing to move (goldberry already has that counter type)
activateAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, ability1, island);
waitStackResolved(1, PhaseStep.PRECOMBAT_MAIN, 1);

setStrictChooseMode(true);
setStopAt(1, PhaseStep.PRECOMBAT_MAIN);
execute();

assertCounterCount(island, counter, 1);
assertCounterCount(island, counter, 2);
assertCounterCount(goldberry, counter, 1);
}

Expand Down

0 comments on commit 5229cf3

Please sign in to comment.