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 @@ -567,11 +567,7 @@ protected function skipIfTransactionsAreNotSupported(): void
567
567
}
568
568
}
569
569
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/ */
575
571
protected static function isCryptSharedLibAvailable (): bool
576
572
{
577
573
$ cryptSharedLibPath = getenv ('CRYPT_SHARED_LIB_PATH ' );
@@ -583,11 +579,7 @@ protected static function isCryptSharedLibAvailable(): bool
583
579
return is_readable ($ cryptSharedLibPath );
584
580
}
585
581
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/ */
591
583
protected static function isMongocryptdAvailable (): bool
592
584
{
593
585
$ paths = explode (PATH_SEPARATOR , getenv ("PATH " ));
Original file line number Diff line number Diff line change @@ -30,8 +30,6 @@ public function setUp(): void
30
30
{
31
31
parent ::setUp ();
32
32
33
- $ this ->skipIfClientSideEncryptionIsNotSupported ();
34
-
35
33
if ($ this ->isStandalone () || ($ this ->isShardedCluster () && ! $ this ->isShardedClusterUsingReplicasets ())) {
36
34
$ this ->markTestSkipped ('Automatic data encryption key tests require replica sets ' );
37
35
}
You can’t perform that action at this time.
0 commit comments