From 75085c9c336e1f74f83b48060869bafc8c0407bd Mon Sep 17 00:00:00 2001 From: Henrique Mouta Date: Fri, 23 Jul 2021 16:37:08 +0100 Subject: [PATCH] Correction on the tests PHPDOC --- tests/test-encryption.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test-encryption.php b/tests/test-encryption.php index 9ebbbfc..a851a45 100644 --- a/tests/test-encryption.php +++ b/tests/test-encryption.php @@ -32,7 +32,7 @@ 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 */ @@ -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() );