Skip to content

Commit 5b01b69

Browse files
wip
1 parent 972037d commit 5b01b69

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

spec/mongo/socket/ssl_spec.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@
2323
end
2424

2525
let (:key_string) do
26-
File.read(SpecConfig.instance.local_client_key_path)
26+
File.read(SpecConfig.instance.client_key_path)
2727
end
2828

2929
let (:cert_string) do
30-
File.read(SpecConfig.instance.local_client_cert_path)
30+
File.read(SpecConfig.instance.client_cert_path)
3131
end
3232

3333
let (:ca_cert_string) do
34-
File.read(SpecConfig.instance.local_ca_cert_path)
34+
File.read(SpecConfig.instance.ca_cert_path)
3535
end
3636

3737
let(:key_encrypted_string) do

spec/support/spec_config.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ def local_client_key_path
282282

283283
def client_key_path
284284
if drivers_tools?
285-
ENV['DRIVER_TOOLS_CLIENT_KEY_PEM']
285+
"#{drivers_tools}/.evergreen/x509gen/client.pem"
286286
else
287287
local_client_key_path
288288
end
@@ -338,7 +338,7 @@ def local_client_encrypted_key_path
338338

339339
def client_encrypted_key_path
340340
if drivers_tools?
341-
ENV['DRIVER_TOOLS_CLIENT_KEY_ENCRYPTED_PEM']
341+
"#{drivers_tools}/.evergreen/x509gen/client-pkcs8-encrypted.pem"
342342
else
343343
local_client_encrypted_key_path
344344
end

0 commit comments

Comments
 (0)