test(Session): Drop unused variable

Signed-off-by: Josh <josh.t.richards@gmail.com>
This commit is contained in:
Josh 2026-01-27 10:38:07 -05:00 committed by GitHub
parent 41719f3e4e
commit 4feb4ca7ea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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();