Skip to content
Prev Previous commit
Next Next commit
address review
  • Loading branch information
blink1073 committed Aug 11, 2022
commit 1bca8d2955fa40caf370c21f678627409120dc3e
4 changes: 2 additions & 2 deletions test/test_encryption.py
Original file line number Diff line number Diff line change
Expand Up @@ -2224,8 +2224,8 @@ class TestRewrapWithSeparateClientEncryption(EncryptionIntegrationTest):
}

def test_rewrap(self):
for src_provider in ALL_KMS_PROVIDERS:
for dst_provider in ALL_KMS_PROVIDERS:
for src_provider in self.MASTER_KEYS:
for dst_provider in self.MASTER_KEYS:
with self.subTest(src_provider=src_provider, dst_provider=dst_provider):
self.run_test(src_provider, dst_provider)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The test says we still need to test the "local" provider:

For "local", do not set a masterKey document.

I think that means we need to add

... "kmip": {}, "local": None, } 
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

They used local: {} in the C driver, I'll go with that.


Expand Down