Issue #316: Update long string cache key test results
[civicrm-core.git] / tests / phpunit / CRM / Core / BAO / CacheTest.php
index 8987f9e853dde3908f75aedf17e0bf4074eb05ac..ad7653fd56613e1b982bea4d3089f2cfec35e003 100644 (file)
@@ -88,9 +88,9 @@ class CRM_Core_BAO_CacheTest extends CiviUnitTestCase {
     $es[] = ['hello/world+-#@{}', 'hello-2fworld-2b-2d-23-40-7b-7d']; // escaped chars
     $es[] = ["LF-\nTAB-\tCR-\remojiskullđź’€", 'LF-2d-aTAB-2d-9CR-2d-demojiskull-f0-9f-92-80']; // short with emoji
     $es[] = ["LF-\nTAB-\tCR-\remojibombđź’Łemojiskullđź’€", '-5d9324e052f6e10240dce5029c5e8525']; // long with emoji
-    $es[] = ['123456789 123456789 123456789 123456789 123456789 123', '123456789-20123456789-20123456789-20123456789-20123456789-20123']; // spaces are escaped
-    $es[] = ['123456789-123456789-123456789-123456789-123456789-123456789-123', '123456789-123456789-123456789-123456789-123456789-123456789-123']; // long but allowed
-    $es[] = ['123456789-123456789-123456789-123456789-123456789-123456789-1234', '-afe584fe1d38b9a007df7d7ba30558e2']; // too long, md5 fallback
+    $es[] = ['123456789 123456789 123456789 123456789 123456789 12', '123456789-20123456789-20123456789-20123456789-20123456789-20123']; // spaces are escaped
+    $es[] = ['123456789-123456789-123456789-123456789-123456789-123456789-12', '123456789-123456789-123456789-123456789-123456789-12']; // long but allowed
+    $es[] = ['123456789-123456789-123456789-123456789-123456789-123456789-123', '-8f6cbe1d258d2ec9a0cffd5ff29ba5d0']; // too long, md5 fallback
     $es[] = ['123456789-/23456789-+23456789--23456789-123456789-123456789', '-afe584fe1d38b9a007df7d7ba30558e2']; // too long, md5 fallback
     return $es;
   }