another issue in TestAbortingHeavyLoadQuery should be fixed now

This commit is contained in:
Axel Uhl
2024-08-29 17:19:34 +02:00
parent 8dcc4c1b8a
commit 2c725002c4
@@ -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) {