Skip to content

Commit 0adf6df

Browse files
authored
PYTHON-5708 - Unskip large encryption tests on mongocryptd (#2793)
1 parent f145c7d commit 0adf6df

2 files changed

Lines changed: 0 additions & 8 deletions

File tree

test/asynchronous/test_encryption.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -876,8 +876,6 @@ async def test_views_are_prohibited(self):
876876

877877

878878
class TestCorpus(AsyncEncryptionIntegrationTest):
879-
# PYTHON-5708: Encryption tests sending large payloads fail on some mongocryptd versions.
880-
@async_client_context.require_version_max(6, 99)
881879
@unittest.skipUnless(any(AWS_CREDS.values()), "AWS environment credentials are not set")
882880
async def asyncSetUp(self):
883881
await super().asyncSetUp()
@@ -1054,8 +1052,6 @@ class TestBsonSizeBatches(AsyncEncryptionIntegrationTest):
10541052
client_encrypted: AsyncMongoClient
10551053
listener: OvertCommandListener
10561054

1057-
# PYTHON-5708: Encryption tests sending large payloads fail on some mongocryptd versions.
1058-
@async_client_context.require_version_max(6, 99)
10591055
async def asyncSetUp(self):
10601056
await super().asyncSetUp()
10611057
db = async_client_context.client.db

test/test_encryption.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -872,8 +872,6 @@ def test_views_are_prohibited(self):
872872

873873

874874
class TestCorpus(EncryptionIntegrationTest):
875-
# PYTHON-5708: Encryption tests sending large payloads fail on some mongocryptd versions.
876-
@client_context.require_version_max(6, 99)
877875
@unittest.skipUnless(any(AWS_CREDS.values()), "AWS environment credentials are not set")
878876
def setUp(self):
879877
super().setUp()
@@ -1050,8 +1048,6 @@ class TestBsonSizeBatches(EncryptionIntegrationTest):
10501048
client_encrypted: MongoClient
10511049
listener: OvertCommandListener
10521050

1053-
# PYTHON-5708: Encryption tests sending large payloads fail on some mongocryptd versions.
1054-
@client_context.require_version_max(6, 99)
10551051
def setUp(self):
10561052
super().setUp()
10571053
db = client_context.client.db

0 commit comments

Comments
 (0)