Skip to content

Commit fb8c85d

Browse files
committed
Remove org.mongodb.test.mongocryptdSpawnPath support from tests
JAVA-3071
1 parent e91018d commit fb8c85d

File tree

3 files changed

+0
-9
lines changed

3 files changed

+0
-9
lines changed

build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,6 @@ configure(javaCodeCheckedProjects) {
137137
'org.mongodb.async.type': System.getProperty('org.mongodb.async.type', 'nio2'),
138138
'org.mongodb.test.awsAccessKeyId': System.getProperty('org.mongodb.test.awsAccessKeyId'),
139139
'org.mongodb.test.awsSecretAccessKey': System.getProperty('org.mongodb.test.awsSecretAccessKey'),
140-
'org.mongodb.test.mongocryptdSpawnPath': System.getProperty('org.mongodb.test.mongocryptdSpawnPath'),
141140
'jna.library.path': System.getProperty('jna.library.path')
142141
)
143142

driver-async/src/test/functional/com/mongodb/async/client/ClientSideEncryptionTest.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -206,10 +206,6 @@ public void setUp() {
206206
}
207207
}
208208

209-
if (System.getProperty("org.mongodb.test.mongocryptdSpawnPath") != null) {
210-
extraOptions.put("mongocryptdSpawnPath", System.getProperty("org.mongodb.test.mongocryptdSpawnPath"));
211-
}
212-
213209
Map<String, Map<String, Object>> kmsProvidersMap = new HashMap<String, Map<String, Object>>();
214210

215211
for (String kmsProviderKey : kmsProviders.keySet()) {

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

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -194,10 +194,6 @@ public void setUp() {
194194
}
195195
}
196196

197-
if (System.getProperty("org.mongodb.test.mongocryptdSpawnPath") != null) {
198-
extraOptions.put("mongocryptdSpawnPath", System.getProperty("org.mongodb.test.mongocryptdSpawnPath"));
199-
}
200-
201197
Map<String, Map<String, Object>> kmsProvidersMap = new HashMap<String, Map<String, Object>>();
202198

203199
for (String kmsProviderKey : kmsProviders.keySet()) {

0 commit comments

Comments
 (0)