File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3482,7 +3482,7 @@ class TestNoSessionsSupport(AsyncEncryptionIntegrationTest):
3482
3482
MONGOCRYPTD_PORT = 27020
3483
3483
3484
3484
async def asyncSetUp (self ) -> None :
3485
- if sys .implementation .lower () == "pypy" :
3485
+ if sys .implementation .name . lower () == "pypy" :
3486
3486
raise self .skipTest ("PYTHON-4982 Skipping test on pypy" )
3487
3487
await super ().asyncSetUp ()
3488
3488
start_mongocryptd (self .MONGOCRYPTD_PORT )
Original file line number Diff line number Diff line change @@ -3464,7 +3464,7 @@ class TestNoSessionsSupport(EncryptionIntegrationTest):
3464
3464
MONGOCRYPTD_PORT = 27020
3465
3465
3466
3466
def setUp (self ) -> None :
3467
- if sys .implementation .lower () == "pypy" :
3467
+ if sys .implementation .name . lower () == "pypy" :
3468
3468
raise self .skipTest ("PYTHON-4982 Skipping test on pypy" )
3469
3469
super ().setUp ()
3470
3470
start_mongocryptd (self .MONGOCRYPTD_PORT )
You can’t perform that action at this time.
0 commit comments