Skip to content

Commit e3ff041

Browse files
authored
PYTHON-3433 Failure: test.test_encryption.TestSpec.test_legacy_maxWireVersion_operation_fails_with_maxWireVersion___8 (#1052)
1 parent 7825636 commit e3ff041

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

test/client-side-encryption/spec/legacy/maxWireVersion.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"runOn": [
33
{
4-
"maxServerVersion": "4.0"
4+
"maxServerVersion": "4.0.99"
55
}
66
],
77
"database_name": "default",

test/test_encryption.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -616,6 +616,8 @@ def parse_auto_encrypt_opts(self, opts):
616616
opts["kms_tls_options"] = KMS_TLS_OPTS
617617
if "key_vault_namespace" not in opts:
618618
opts["key_vault_namespace"] = "keyvault.datakeys"
619+
if "extra_options" in opts:
620+
opts.update(camel_to_snake_args(opts.pop("extra_options")))
619621

620622
opts = dict(opts)
621623
return AutoEncryptionOpts(**opts)

0 commit comments

Comments
 (0)