Skip to content

Commit ed72cd7

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

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ 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");
3434
}
3535

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ 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");
3636
}
3737

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

0 commit comments

Comments
 (0)