Skip to content

Commit d5fb38f

Browse files
committed
Fix Spock test
1 parent 4e414ba commit d5fb38f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

driver-core/src/test/functional/com/mongodb/internal/connection/GSSAPIAuthenticatorSpecification.groovy

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
package com.mongodb.internal.connection
1818

1919
import com.mongodb.ClusterFixture
20+
import com.mongodb.LoggerSettings
2021
import com.mongodb.MongoCompressor
2122
import com.mongodb.SubjectProvider
2223
import com.mongodb.connection.ClusterId
@@ -49,7 +50,7 @@ class GSSAPIAuthenticatorSpecification extends Specification {
4950
def credentialWithCache = new MongoCredentialWithCache(credential)
5051
def streamFactory = new SocketStreamFactory(SocketSettings.builder().build(), getSslSettings())
5152
def internalConnection = new InternalStreamConnectionFactory(SINGLE, streamFactory, credentialWithCache, null,
52-
null, Collections.<MongoCompressor> emptyList(), null, getServerApi())
53+
null, Collections.<MongoCompressor> emptyList(), LoggerSettings.builder().build(), null, getServerApi())
5354
.create(new ServerId(new ClusterId(), getPrimary()))
5455

5556
when:

0 commit comments

Comments
 (0)