Skip to content

Commit

Permalink
increase timeout for lagging tests because changing the test is easie…
Browse files Browse the repository at this point in the history
…r than warming up the JVM lol
  • Loading branch information
TeamDman committed Jun 25, 2024
1 parent fcca6b5 commit 007bafc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gametest/java/ca/teamdman/sfm/SFMGameTestBase.java
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public Block getBlock() {
triggers.remove(endTimerTrigger);
assertion.run();
SFMGameTestBase.assertTrue(
endTime.get() - startTime.get() < 70_000_000,
endTime.get() - startTime.get() < 80_000_000,
"Program took too long to run: took " + NumberFormat
.getInstance(Locale.getDefault())
.format(endTime.get() - startTime.get()) + "ns"
Expand Down

0 comments on commit 007bafc

Please sign in to comment.