Skip to content

Commit

Permalink
Increase time allotment for the charger due to its randomness.
Browse files Browse the repository at this point in the history
  • Loading branch information
shartte committed Mar 9, 2024
1 parent 5e8d42e commit 0fce936
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,9 @@ public static void testCharger(PlotBuilder plot) {
})
// Ensure that after 1 second, the grid still has no energy
.thenExecuteAfter(20, () -> checkGridHasNoEnergy(helper))
.thenSucceed());
.thenSucceed())
// due to the chargers randomness, this can take longer than the default time
.maxTicks(15 * 20);
}

@TestPlot("fe_growth_accelerator")
Expand Down

0 comments on commit 0fce936

Please sign in to comment.