test: fix array_merge parameters order

This commit is contained in:
Khoubza Younes
2023-02-05 17:24:51 +01:00
parent 781e045155
commit 5f27d239ad
@@ -147,7 +147,7 @@ final class ResourceManager implements ResourceManagerInterface
$options = $this->config->get('options', array());
if (isset($this->options[$handler])) {
$options = array_merge($options, $this->options[$handler]);
$options = array_merge($this->options[$handler], $options);
}
$this->addOptions('theme.flasher', $options);