From fb532b06f85102689abb31bb7d3b62387772f290 Mon Sep 17 00:00:00 2001 From: Lee Rowlands Date: Tue, 30 Apr 2019 07:37:00 +1000 Subject: [PATCH] Issue #3049938 by pfrenssen: Deprecation message linking to wrong change record --- core/tests/Drupal/KernelTests/KernelTestBase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/tests/Drupal/KernelTests/KernelTestBase.php b/core/tests/Drupal/KernelTests/KernelTestBase.php index e1987ab05330e55..6cfbda5ae09267a 100644 --- a/core/tests/Drupal/KernelTests/KernelTestBase.php +++ b/core/tests/Drupal/KernelTests/KernelTestBase.php @@ -710,7 +710,7 @@ abstract class KernelTestBase extends TestCase implements ServiceProviderInterfa if (empty($schema)) { // BC layer to avoid some contrib tests to fail. if ($module == 'system') { - @trigger_error('Special handling of system module schemas in \Drupal\KernelTests\KernelTestBase::installSchema has been deprecated in Drupal 8.7.x, remove any calls to this method that use invalid schema names. See https://www.drupal.org/project/drupal/issues/2794347.', E_USER_DEPRECATED); + @trigger_error('Special handling of system module schemas in \Drupal\KernelTests\KernelTestBase::installSchema has been deprecated in Drupal 8.7.x, remove any calls to this method that use invalid schema names. See https://www.drupal.org/node/3003360.', E_USER_DEPRECATED); continue; } throw new \LogicException("$module module does not define a schema for table '$table'.");