From 2fe3b82a979d18525df11f0557fdb1d07f30cf12 Mon Sep 17 00:00:00 2001 From: catch <catch@35733.no-reply.drupal.org> Date: Mon, 25 Nov 2019 14:50:42 +0000 Subject: [PATCH] Issue #3095598 by oknate: defaultTheme deprecation warning should link to change record --- core/lib/Drupal/Core/Test/FunctionalTestSetupTrait.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lib/Drupal/Core/Test/FunctionalTestSetupTrait.php b/core/lib/Drupal/Core/Test/FunctionalTestSetupTrait.php index b56f6ac228de..1df7ccf99cc2 100644 --- a/core/lib/Drupal/Core/Test/FunctionalTestSetupTrait.php +++ b/core/lib/Drupal/Core/Test/FunctionalTestSetupTrait.php @@ -427,7 +427,7 @@ protected function installDefaultThemeFromClassProperty(ContainerInterface $cont // For backwards compatibility, tests using the 'testing' install profile // on Drupal 8 automatically get 'classy' set, and other profiles use // 'stark'. - @trigger_error('Drupal\Tests\BrowserTestBase::$defaultTheme is required in drupal:9.0.0 when using an install profile that does not set a default theme. See https://www.drupal.org/node/2352949, which includes recommendations on which theme to use.', E_USER_DEPRECATED); + @trigger_error('Drupal\Tests\BrowserTestBase::$defaultTheme is required in drupal:9.0.0 when using an install profile that does not set a default theme. See https://www.drupal.org/node/3083055, which includes recommendations on which theme to use.', E_USER_DEPRECATED); $this->defaultTheme = $profile === 'testing' ? 'classy' : 'stark'; } -- GitLab