Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Copilot updates
  • Loading branch information
rozza committed Sep 30, 2025
commit 8d0155425292a8437d86f398681030a9e505c706
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ void testAsyncTransportSettings() {
.transportSettings(asyncTransportSettings)
.build();

try (MongoClient client = new SyncMongoClient(mongoClientSettings);) {
try (MongoClient client = new SyncMongoClient(mongoClientSettings)) {
client.listDatabases().first();
}
verify(executorService, atLeastOnce()).execute(any());
Expand All @@ -67,7 +67,7 @@ void testExternalExecutorWasShutDown(final boolean tlsEnabled) throws Interrupte
.transportSettings(asyncTransportSettings)
.build();

try (MongoClient ignored = new SyncMongoClient(mongoClientSettings);) {
try (MongoClient ignored = new SyncMongoClient(mongoClientSettings)) {
// ignored
}

Expand Down