Skip to content

Commit 2cce0c9

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

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@ 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")
35+
&& testDescription.equals("A successful find event with a getmore and the server kills the cursor (<= 4.4)"),
36+
"UPDATED final batchSize to 3 as batchSize is no longer calculated see: DRIVERS-1448 ");
3437
}
3538

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

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@ 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")
37+
&& testDescription.equals("A successful find event with a getmore and the server kills the cursor (<= 4.4)"),
38+
"UPDATED final batchSize to 3 as batchSize is no longer calculated see: DRIVERS-1448 ");
3639
}
3740

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

0 commit comments

Comments
 (0)