Skip to content

Commit a840007

Browse files
georgeajitgeorgeajit
georgeajit
authored and
georgeajit
committed
No Task - Test corrected to account for timing issue
1 parent dc1e5cd commit a840007

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

marklogic-client-api/src/test/java/com/marklogic/client/test/dataservices/ErrorListenerExecEndpointTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ public void testBulkExecCallerImplWithStop() throws IOException {
154154
JsonNode finalState1 = docMgr.read(finalStateUri1, new JacksonHandle()).get();
155155
JsonNode finalState2 = docMgr.read(finalStateUri2, new JacksonHandle()).get();
156156
assertTrue("finalState1 is wrong, should be less than 15, but " + finalState1.get("state").get("next").asText(),
157-
finalState1.get("state").get("next").asInt() < 15);
157+
finalState1.get("state").get("next").asInt() <= 15);
158158
assertTrue("finalState2 is wrong, should be less than 26, but " + finalState2.get("state").get("next").asText(),
159159
finalState2.get("state").get("next").asInt() <= 26);
160160
assertNotNull("null final state", finalState1);

0 commit comments

Comments
 (0)