Skip to content
Snippets Groups Projects
Commit 79835b02 authored by catch's avatar catch
Browse files

Issue #3146567 by alexpott, pacproduct: Wrong key name in "Missing required...

Issue #3146567 by alexpott, pacproduct: Wrong key name in "Missing required key (base_theme)" exception message
parent 15b39f02
No related branches found
No related tags found
No related merge requests found
......@@ -266,7 +266,7 @@ protected function createExtensionInfo(Extension $extension) {
$info = parent::createExtensionInfo($extension);
if (!isset($info['base theme'])) {
throw new InfoParserException('Missing required key (base_theme) in ' . $extension->getExtensionPathname() . '/' . $extension->getExtensionFilename());
throw new InfoParserException(sprintf('Missing required key ("base theme") in %s/%s, see https://www.drupal.org/node/3066038', $extension->getExtensionPathname(), $extension->getExtensionFilename()));
}
// Remove the base theme when 'base theme: false' is set in a theme
......
......@@ -75,7 +75,7 @@ public function testMissingBaseThemeException() {
->setInfoParser(new VfsInfoParser('vfs:/'));
$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');
$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->themeInstaller->install(['test_missing_base_theme']);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment