Skip to content

Commit 13ae055

Browse files
author
Divjot Arora
committed
GODRIVER-1592 Fix key vault database name for prose tests
1 parent 1fc8a2d commit 13ae055

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

mongo/integration/client_side_encryption_prose_test.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ const (
3838
clientEncryptionProseDir = "../../data/client-side-encryption-prose"
3939
deterministicAlgorithm = "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
4040
randomAlgorithm = "AEAD_AES_256_CBC_HMAC_SHA_512-Random"
41-
kvNamespace = "admin.datakeys" // default namespace for the key vault collection
42-
keySubtype byte = 4 // expected subtype for data keys
43-
encryptedValueSubtype byte = 6 // expected subtypes for encrypted values
44-
cryptMaxBatchSizeBytes = 2097152 // max bytes in write batch when auto encryption is enabled
45-
maxBsonObjSize = 16777216 // max bytes in BSON object
41+
kvNamespace = "keyvault.datakeys" // default namespace for the key vault collection
42+
keySubtype byte = 4 // expected subtype for data keys
43+
encryptedValueSubtype byte = 6 // expected subtypes for encrypted values
44+
cryptMaxBatchSizeBytes = 2097152 // max bytes in write batch when auto encryption is enabled
45+
maxBsonObjSize = 16777216 // max bytes in BSON object
4646
)
4747

4848
func TestClientSideEncryptionProse(t *testing.T) {

0 commit comments

Comments
 (0)