Skip to content

Commit 2700ac0

Browse files
committed
fix tests
1 parent 2d63d96 commit 2700ac0

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.evergreen/config.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -563,8 +563,6 @@ functions:
563563
binary: bash
564564
background: true
565565
include_expansions_in_env: ["AWS_ACCESS_KEY_ID", "AWS_SECRET_ACCESS_KEY", "AWS_SESSION_TOKEN", "DRIVERS_TOOLS"]
566-
# This cannot use task because it will hang on Windows.
567-
args: [etc/setup-encryption.sh]
568566
- command: subprocess.exec
569567
params:
570568
binary: python3
@@ -586,6 +584,7 @@ functions:
586584
params:
587585
binary: "bash"
588586
env:
587+
CSFLE_TLS_CA_FILE: "${PARENT_DIR}/x509gen/ca.pem"
589588
KMS_FAILPOINT_SERVERS_RUNNING: "true"
590589
args: [*task-runner, evg-test-retry-kms-requests]
591590

internal/integration/client_side_encryption_prose_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1516,8 +1516,8 @@ func TestClientSideEncryptionProse(t *testing.T) {
15161516
tlsConfig := make(map[string]*tls.Config)
15171517
if tlsCAFileKMIP != "" && tlsClientCertificateKeyFileKMIP != "" {
15181518
clientAndCATlsMap := map[string]interface{}{
1519-
"tlsCertificateKeyFile": tlsClientCertificateKeyFileKMIP,
1520-
"tlsCAFile": tlsCAFileKMIP,
1519+
// "tlsCertificateKeyFile": tlsClientCertificateKeyFileKMIP,
1520+
"tlsCAFile": tlsCAFileKMIP,
15211521
}
15221522
certConfig, err := options.BuildTLSConfig(clientAndCATlsMap)
15231523
assert.Nil(mt, err, "BuildTLSConfig error: %v", err)

0 commit comments

Comments
 (0)