Skip to content

Commit ca42f60

Browse files
Change the ticket id for the skipped case
1 parent a4874a4 commit ca42f60

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

driver-reactive-streams/src/test/functional/com/mongodb/reactivestreams/client/unified/CommandMonitoringTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ protected void skips(final String fileDescription, final String testDescription)
3030
// The driver has a hack where getLastError command is executed as part of the handshake in order to get a connectionId
3131
// even when the hello command response doesn't contain it.
3232
assumeFalse(fileDescription.equals("pre-42-server-connection-id"));
33-
assumeFalse(fileDescription.equals("unacknowledged-client-bulkWrite"), "Skipping until JAVA-5545 is implemented");
33+
assumeFalse(fileDescription.equals("unacknowledged-client-bulkWrite"), "Skipping until JAVA-4586 is implemented");
34+
assumeFalse(fileDescription.equals("find") && testDescription.equals("A successful find event with a getmore and the server kills" +
35+
" the cursor (<= 4.4)"), "UPDATED final batchSize to 3 as batchSize is no longer calculated see: DRIVERS-1448 ");
3436
}
3537

3638
private static Collection<Arguments> data() throws URISyntaxException, IOException {

driver-sync/src/test/functional/com/mongodb/client/unified/CommandMonitoringTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ protected void skips(final String fileDescription, final String testDescription)
3232
// The driver has a hack where getLastError command is executed as part of the handshake in order to get a connectionId
3333
// even when the hello command response doesn't contain it.
3434
assumeFalse(fileDescription.equals("pre-42-server-connection-id"));
35-
assumeFalse(fileDescription.equals("unacknowledged-client-bulkWrite"), "Skipping until JAVA-5545 is implemented");
35+
assumeFalse(fileDescription.equals("unacknowledged-client-bulkWrite"), "Skipping until JAVA-4586 is implemented");
36+
assumeFalse(fileDescription.equals("find") && testDescription.equals("A successful find event with a getmore and the server kills" +
37+
" the cursor (<= 4.4)"), "UPDATED final batchSize to 3 as batchSize is no longer calculated see: DRIVERS-1448 ");
3638
}
3739

3840
private static Collection<Arguments> data() throws URISyntaxException, IOException {

0 commit comments

Comments
 (0)