By nicxvan on
Change record status:
Published (View all published change records)
Project:
Introduced in branch:
10.4.x
Introduced in version:
10.4.0
Issue links:
Description:
The abstract class InstallerExistingConfigTestBase is now deprecated, use \Drupal\FunctionalTests\Installer\InstallerConfigDirectoryTestBase instead.
The method getConfigTarball has been replaced with the method getConfigLocation
The path should now point to a directory instead of a tarball.
Before:
class InstallerExistingConfigSyncDirectoryMultilingualTest extends InstallerExistingConfigTestBase
protected function getConfigTarball() {
return __DIR__ . '/../../../fixtures/config_install/multilingual.tar.gz';
}
After
class InstallerExistingConfigSyncDirectoryMultilingualTest extends InstallerConfigDirectoryTestBase
protected function getConfigLocation() {
return __DIR__ . '/../../../fixtures/config_install/multilingual';
}
Impacts:
Module developers
Themers
Site templates, recipes and distribution developers