Issue #3228963 by el7cosmos: Wrong path for Exception message in ThemeExtensionList
(cherry picked from commit 9b0462f130
)
merge-requests/1123/head
parent
a310e7a2cb
commit
764427c45d
|
@ -266,7 +266,7 @@ class ThemeExtensionList extends ExtensionList {
|
||||||
$info = parent::createExtensionInfo($extension);
|
$info = parent::createExtensionInfo($extension);
|
||||||
|
|
||||||
if (!isset($info['base theme'])) {
|
if (!isset($info['base theme'])) {
|
||||||
throw new InfoParserException(sprintf('Missing required key ("base theme") in %s/%s, see https://www.drupal.org/node/3066038', $extension->getExtensionPathname(), $extension->getExtensionFilename()));
|
throw new InfoParserException(sprintf('Missing required key ("base theme") in %s, see https://www.drupal.org/node/3066038', $extension->getPathname()));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Remove the base theme when 'base theme: false' is set in a theme
|
// Remove the base theme when 'base theme: false' is set in a theme
|
||||||
|
|
|
@ -75,7 +75,7 @@ class BaseThemeMissingTest extends KernelTestBase {
|
||||||
->setInfoParser(new VfsInfoParser('vfs:/'));
|
->setInfoParser(new VfsInfoParser('vfs:/'));
|
||||||
|
|
||||||
$this->expectException(InfoParserException::class);
|
$this->expectException(InfoParserException::class);
|
||||||
$this->expectExceptionMessage('Missing required key ("base theme") in themes/test_missing_base_theme/test_missing_base_theme.theme/test_missing_base_theme.theme, see https://www.drupal.org/node/3066038');
|
$this->expectExceptionMessage('Missing required key ("base theme") in themes/test_missing_base_theme/test_missing_base_theme.info.yml, see https://www.drupal.org/node/3066038');
|
||||||
$this->themeInstaller->install(['test_missing_base_theme']);
|
$this->themeInstaller->install(['test_missing_base_theme']);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue