File tree Expand file tree Collapse file tree 2 files changed +2
-12
lines changed
SpecTests/ClientSideEncryption Expand file tree Collapse file tree 2 files changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -560,11 +560,7 @@ protected function skipIfTransactionsAreNotSupported(): void
560
560
}
561
561
}
562
562
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/ */
568
564
protected static function isCryptSharedLibAvailable (): bool
569
565
{
570
566
$ cryptSharedLibPath = getenv ('CRYPT_SHARED_LIB_PATH ' );
@@ -576,11 +572,7 @@ protected static function isCryptSharedLibAvailable(): bool
576
572
return is_readable ($ cryptSharedLibPath );
577
573
}
578
574
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/ */
584
576
protected static function isMongocryptdAvailable (): bool
585
577
{
586
578
$ paths = explode (PATH_SEPARATOR , getenv ("PATH " ));
Original file line number Diff line number Diff line change @@ -31,8 +31,6 @@ public function setUp(): void
31
31
{
32
32
parent ::setUp ();
33
33
34
- $ this ->skipIfClientSideEncryptionIsNotSupported ();
35
-
36
34
if ($ this ->isStandalone () || ($ this ->isShardedCluster () && ! $ this ->isShardedClusterUsingReplicasets ())) {
37
35
$ this ->markTestSkipped ('Automatic data encryption key tests require replica sets ' );
38
36
}
You can’t perform that action at this time.
0 commit comments