From 91f605ebb4fed15dd9a9f51cf616d0fbfd7a8dd7 Mon Sep 17 00:00:00 2001 From: Dave Long <dave@longwaveconsulting.com> Date: Wed, 3 May 2023 09:06:21 +0100 Subject: [PATCH] Hotfix for #3123060 by dww, daffie: Fix hash for classy.theme. --- .../Drupal/Tests/Core/Theme/ClassyPreprocessUnchangedTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/tests/Drupal/Tests/Core/Theme/ClassyPreprocessUnchangedTest.php b/core/tests/Drupal/Tests/Core/Theme/ClassyPreprocessUnchangedTest.php index d9957e039485..ae74168497f4 100644 --- a/core/tests/Drupal/Tests/Core/Theme/ClassyPreprocessUnchangedTest.php +++ b/core/tests/Drupal/Tests/Core/Theme/ClassyPreprocessUnchangedTest.php @@ -25,7 +25,7 @@ class ClassyPreprocessUnchangedTest extends UnitTestCase { public function testNoNewPreprocess() { $classy_theme_contents = file_get_contents($this->root . '/core/themes/classy/classy.theme'); $hash = md5($classy_theme_contents); - $this->assertSame($hash, 'c42ff3a1291a258b42f0c44010cd28c7', "The file hash for classy.theme has changed. Any additions or changes to preprocess functions should be added to the themes that inherit Classy. \nIf the changes to classy.theme are not changes to preprocess functions, update the hash in this test to: '$hash' so it will pass."); + $this->assertSame('1a5f162bc900c45957aaa89959bcb607', $hash, "The file hash for classy.theme has changed. Any additions or changes to preprocess functions should be added to the themes that inherit Classy. \nIf the changes to classy.theme are not changes to preprocess functions, update the hash in this test to: '$hash' so it will pass."); } } -- GitLab