We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cec4fdd commit 2882715Copy full SHA for 2882715
src/Drupal/DrupalAutoloader.php
@@ -91,8 +91,7 @@ public function register(Container $container): void
91
92
$this->moduleData = array_merge($this->extensionDiscovery->scan('module'), $profiles);
93
usort($this->moduleData, static function (Extension $a, Extension $b) {
94
- // blazy_test causes errors, ensure it is loaded last.
95
- return $a->getName() === 'blazy_test' ? 10 : 0;
+ return strpos($a->getName(), '_test') !== false ? 10 : 0;
96
});
97
$this->themeData = $this->extensionDiscovery->scan('theme');
98
$this->addTestNamespaces();
0 commit comments