From 4feb4ca7eae07fa1ffb8d40c073c692473375099 Mon Sep 17 00:00:00 2001 From: Josh Date: Tue, 27 Jan 2026 10:38:07 -0500 Subject: [PATCH] test(Session): Drop unused variable Signed-off-by: Josh --- tests/lib/Session/CryptoSessionDataTest.php | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/lib/Session/CryptoSessionDataTest.php b/tests/lib/Session/CryptoSessionDataTest.php index 162aa43785d..dbe83edbede 100644 --- a/tests/lib/Session/CryptoSessionDataTest.php +++ b/tests/lib/Session/CryptoSessionDataTest.php @@ -45,7 +45,6 @@ class CryptoSessionDataTest extends Session { public function testSessionDataStoredEncrypted(): void { $keyName = 'secret'; $unencryptedValue = 'superSecretValue123'; - $encryptedValue = $this->crypto->encrypt($unencryptedValue); $this->instance->set('secret', 'superSecretValue123'); $this->instance->close();