From cea517c267357d8f73d807d3d13434c3d5cb3c53 Mon Sep 17 00:00:00 2001 From: tedbow <tedbow@240860.no-reply.drupal.org> Date: Tue, 15 Feb 2022 17:46:12 +0000 Subject: [PATCH] =?UTF-8?q?Issue=20#3264554=20by=20tedbow:=20Remove=20fun?= =?UTF-8?q?=20from=20module=20to=20get=20core=20cspell=20check=20to=20pass?= =?UTF-8?q?=20=F0=9F=98=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/src/Unit/ReadinessTraitTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/src/Unit/ReadinessTraitTest.php b/tests/src/Unit/ReadinessTraitTest.php index 9f74b42c1b..808927a099 100644 --- a/tests/src/Unit/ReadinessTraitTest.php +++ b/tests/src/Unit/ReadinessTraitTest.php @@ -58,9 +58,9 @@ class ReadinessTraitTest extends UnitTestCase { // messages as errors and warnings, respectively. $results = [ ValidationResult::createError(['Boo!']), - ValidationResult::createError(['Wednesday', 'Pugsley'], $this->t('The Addams Family')), + ValidationResult::createError(['Wednesday', 'Thursday'], $this->t('The Addams Family')), ValidationResult::createWarning(['Moo!']), - ValidationResult::createWarning(['Shaggy', 'Scooby'], $this->t('Mystery Mobile')), + ValidationResult::createWarning(['Shaggy', 'The dog'], $this->t('Mystery Mobile')), ]; $this->displayResults($results, $messenger); -- GitLab