Skip to content

Commit 5d8be5d

Browse files
committed
remove incorrect comment
1 parent ae8b61c commit 5d8be5d

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
@@ -567,11 +567,7 @@ protected function skipIfTransactionsAreNotSupported(): void
567567
}
568568
}
569569

570-
/**
571-
* The Automatic Encryption Shared Library is installed with MongoDB Enterprise or Atlas (version 6.0 and later).
572-
*
573-
* @see https://www.mongodb.com/docs/manual/core/queryable-encryption/reference/shared-library/
574-
*/
570+
/** @see https://www.mongodb.com/docs/manual/core/queryable-encryption/reference/shared-library/ */
575571
protected static function isCryptSharedLibAvailable(): bool
576572
{
577573
$cryptSharedLibPath = getenv('CRYPT_SHARED_LIB_PATH');
@@ -583,11 +579,7 @@ protected static function isCryptSharedLibAvailable(): bool
583579
return is_readable($cryptSharedLibPath);
584580
}
585581

586-
/**
587-
* mongocryptd is installed with MongoDB Enterprise Server (version 4.2 and later).
588-
*
589-
* @see https://www.mongodb.com/docs/manual/core/queryable-encryption/reference/mongocryptd/
590-
*/
582+
/** @see https://www.mongodb.com/docs/manual/core/queryable-encryption/reference/mongocryptd/ */
591583
protected static function isMongocryptdAvailable(): bool
592584
{
593585
$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
@@ -30,8 +30,6 @@ public function setUp(): void
3030
{
3131
parent::setUp();
3232

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

0 commit comments

Comments
 (0)