From 330315f03e27c8a2c155229063eaef2050060485 Mon Sep 17 00:00:00 2001 From: Konrad Abicht Date: Fri, 12 Feb 2021 13:01:37 +0100 Subject: refined name of getOpenSSLEncryptedAndPrivateKey Signed-off-by: Konrad Abicht --- tests/Core/Service/LoginFlowV2ServiceUnitTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/Core') diff --git a/tests/Core/Service/LoginFlowV2ServiceUnitTest.php b/tests/Core/Service/LoginFlowV2ServiceUnitTest.php index ba0a3130af7..233960ea97a 100644 --- a/tests/Core/Service/LoginFlowV2ServiceUnitTest.php +++ b/tests/Core/Service/LoginFlowV2ServiceUnitTest.php @@ -116,7 +116,7 @@ class LoginFlowV2ServiceUnitTest extends TestCase { * * @return array Array contains encrypted password, private key and public key. */ - private function getOpenSSLEncryptedAndPrivateKey(string $appPassword): array { + private function getOpenSSLEncryptedPublicAndPrivateKey(string $appPassword): array { // Create the private and public key $res = openssl_pkey_new([ 'digest_alg' => 'md5', // take fast algorithm for testing purposes @@ -181,7 +181,7 @@ class LoginFlowV2ServiceUnitTest extends TestCase { } public function testPollRemoveDataFromDb() { - list($encrypted, $privateKey) = $this->getOpenSSLEncryptedAndPrivateKey('test_pass'); + list($encrypted, $privateKey) = $this->getOpenSSLEncryptedPublicAndPrivateKey('test_pass'); $this->crypto->expects($this->once()) ->method('decrypt') @@ -295,7 +295,7 @@ class LoginFlowV2ServiceUnitTest extends TestCase { */ public function testFlowDone() { - list(,, $publicKey) = $this->getOpenSSLEncryptedAndPrivateKey('test_pass'); + list(,, $publicKey) = $this->getOpenSSLEncryptedPublicAndPrivateKey('test_pass'); $loginFlowV2 = new LoginFlowV2(); $loginFlowV2->setPublicKey($publicKey); -- cgit v1.2.3