From c6061be5a7bb7337c3bd13f069163372b41b9a9a Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 28 Jan 2026 11:05:34 -0500 Subject: [PATCH] test(Sesssion): fixup quoting CryptoSessionDataTest for lint/rector Signed-off-by: Josh --- tests/lib/Session/CryptoSessionDataTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib/Session/CryptoSessionDataTest.php b/tests/lib/Session/CryptoSessionDataTest.php index 449f0945b79..03f39a00172 100644 --- a/tests/lib/Session/CryptoSessionDataTest.php +++ b/tests/lib/Session/CryptoSessionDataTest.php @@ -90,7 +90,7 @@ class CryptoSessionDataTest extends Session { public static function roundTripValuesProvider(): array { return [ 'simple string' => ['foo', 'bar'], - 'unicode value' => ['uni', "héllo 🌍"], + 'unicode value' => ['uni', 'héllo 🌍'], 'large value' => ['big', str_repeat('x', 4096)], 'large array' => ['thousand', json_encode(self::makeLargeArray())], 'empty string' => ['', ''],