Fixed failing test

This commit is contained in:
CalDescent 2022-08-17 19:25:45 +01:00
parent 830a608b14
commit 11ef31215b

View File

@ -52,7 +52,7 @@ public class PirateChainTests extends Common {
System.out.println(String.format("1st call: %d ms, 2nd call: %d ms", firstPeriod, secondPeriod));
assertTrue("2nd call should be quicker than 1st", secondPeriod < firstPeriod);
assertTrue("1st call should take less than 5 seconds", firstPeriod < 5000L);
assertTrue("2nd call should take less than 5 seconds", secondPeriod < 5000L);
}