mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-20 04:35:32 +00:00
another issue in TestAbortingHeavyLoadQuery should be fixed now
This commit is contained in:
+1
-1
@@ -173,7 +173,7 @@ public class TestAbortingHeavyLoadQuery {
|
||||
assertTrue("computeResult() of a running unfinished instruction didn't finish", instruction.computeResultWasCalled() == instruction.computeResultWasFinished());
|
||||
if (instruction instanceof StatefulBlockingInstruction) {
|
||||
StatefulBlockingInstruction<?> blockingInstruction = (StatefulBlockingInstruction<?>) instruction;
|
||||
assertTrue("computeResult() of a running heavy load instruction wasn't aborted", blockingInstruction.computeResultWasAborted());
|
||||
assertTrue("computeResult() of a running heavy load instruction wasn't aborted", !blockingInstruction.computeResultWasCalled() || blockingInstruction.computeResultWasAborted());
|
||||
}
|
||||
}
|
||||
for (StatefulProcessorInstruction<?> instruction : notStartedInstructions) {
|
||||
|
||||
Reference in New Issue
Block a user