Skip to content

Commit ae6a3a5

Browse files
authored
PHPLIB-1660: Remove redundant CSFLE checks (#1655)
2 parents 37f61eb + 3e2c352 commit ae6a3a5

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

Diff for: tests/Operation/CreateEncryptedCollectionFunctionalTest.php

-4
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,6 @@ public function setUp(): void
2727

2828
$this->skipIfClientSideEncryptionIsNotSupported();
2929

30-
if (! static::isCryptSharedLibAvailable() && ! static::isMongocryptdAvailable()) {
31-
$this->markTestSkipped('Neither crypt_shared nor mongocryptd are available');
32-
}
33-
3430
if ($this->isStandalone()) {
3531
$this->markTestSkipped('Queryable Encryption requires replica sets');
3632
}

Diff for: tests/SpecTests/ClientSideEncryption/FunctionalTestCase.php

-4
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,6 @@ public function setUp(): void
2525
parent::setUp();
2626

2727
$this->skipIfClientSideEncryptionIsNotSupported();
28-
29-
if (! static::isCryptSharedLibAvailable() && ! static::isMongocryptdAvailable()) {
30-
$this->markTestSkipped('Neither crypt_shared nor mongocryptd are available');
31-
}
3228
}
3329

3430
public static function createTestClient(?string $uri = null, array $options = [], array $driverOptions = []): Client

0 commit comments

Comments
 (0)