diff --git a/tests/test-encryption.php b/tests/test-encryption.php index 9ebbbfc..dde74b8 100644 --- a/tests/test-encryption.php +++ b/tests/test-encryption.php @@ -32,9 +32,9 @@ public function setUp() { } /** - * Test if the encryptor being used with PHP 7.1 or older is the mcrypt encryptor. + * Test new instance of Syndication_Encryption with the MCrypt strategy. * - * @requires module mcrypt + * @requires extension mcrypt */ public function test_new_encryption_instance_with_mcrypt() { $syndication_encryption = new \Syndication_Encryption( new \Syndication_Encryptor_MCrypt() ); @@ -54,7 +54,7 @@ public function test_new_encryption_instance_with_mcrypt() { } /** - * Test if the encryptor being used with newer PHP is OpenSSL encryptor. + * Test new instance of Syndication_Encryption with the OpenSSL strategy. */ public function test_new_encryption_instance_with_openssl() { $syndication_encryption = new \Syndication_Encryption( new \Syndication_Encryptor_OpenSSL() );