Skip to content

Commit 178be17

Browse files
committed
remove incorrect comment
1 parent 9202f0c commit 178be17

File tree

2 files changed

+2
-12
lines changed

2 files changed

+2
-12
lines changed

tests/FunctionalTestCase.php

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -560,11 +560,7 @@ protected function skipIfTransactionsAreNotSupported(): void
560560
}
561561
}
562562

563-
/**
564-
* The Automatic Encryption Shared Library is installed with MongoDB Enterprise or Atlas (version 6.0 and later).
565-
*
566-
* @see https://www.mongodb.com/docs/manual/core/queryable-encryption/reference/shared-library/
567-
*/
563+
/** @see https://www.mongodb.com/docs/manual/core/queryable-encryption/reference/shared-library/ */
568564
protected static function isCryptSharedLibAvailable(): bool
569565
{
570566
$cryptSharedLibPath = getenv('CRYPT_SHARED_LIB_PATH');
@@ -576,11 +572,7 @@ protected static function isCryptSharedLibAvailable(): bool
576572
return is_readable($cryptSharedLibPath);
577573
}
578574

579-
/**
580-
* mongocryptd is installed with MongoDB Enterprise Server (version 4.2 and later).
581-
*
582-
* @see https://www.mongodb.com/docs/manual/core/queryable-encryption/reference/mongocryptd/
583-
*/
575+
/** @see https://www.mongodb.com/docs/manual/core/queryable-encryption/reference/mongocryptd/ */
584576
protected static function isMongocryptdAvailable(): bool
585577
{
586578
$paths = explode(PATH_SEPARATOR, getenv("PATH"));

tests/SpecTests/ClientSideEncryption/Prose21_AutomaticDataEncryptionKeysTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ public function setUp(): void
3131
{
3232
parent::setUp();
3333

34-
$this->skipIfClientSideEncryptionIsNotSupported();
35-
3634
if ($this->isStandalone() || ($this->isShardedCluster() && ! $this->isShardedClusterUsingReplicasets())) {
3735
$this->markTestSkipped('Automatic data encryption key tests require replica sets');
3836
}

0 commit comments

Comments
 (0)