diff --git a/core/modules/views/src/Tests/TestViewsTest.php b/core/modules/views/src/Tests/TestViewsTest.php index 6dc3fe8..ca869ea 100644 --- a/core/modules/views/src/Tests/TestViewsTest.php +++ b/core/modules/views/src/Tests/TestViewsTest.php @@ -8,10 +8,10 @@ namespace Drupal\views\Tests; use Drupal\config\Tests\SchemaCheckTestTrait; +use Drupal\config_test\TestInstallStorage; use Drupal\Core\Config\InstallStorage; use Drupal\Core\Config\TypedConfigManager; use Drupal\simpletest\KernelTestBase; -use Drupal\views_test_data\TestViewsInstallStorage; /** * Tests that test views provided by all modules match schema. @@ -37,14 +37,14 @@ public function testDefaultConfig() { // every module, profile and theme. $typed_config = new TypedConfigManager( \Drupal::service('config.storage'), - new TestViewsInstallStorage(InstallStorage::CONFIG_SCHEMA_DIRECTORY), + new TestInstallStorage(InstallStorage::CONFIG_SCHEMA_DIRECTORY), \Drupal::service('cache.discovery'), \Drupal::service('module_handler') ); // Create a configuration storage with access to default configuration in // every module, profile and theme. - $default_config_storage = new TestViewsInstallStorage(); + $default_config_storage = new TestInstallStorage('test_views'); foreach ($default_config_storage->listAll() as $config_name) { // Skip files provided by the config_schema_test module since that module diff --git a/core/modules/views/tests/modules/views_test_data/src/TestViewsInstallStorage.php b/core/modules/views/tests/modules/views_test_data/src/TestViewsInstallStorage.php deleted file mode 100644 index 398a811..0000000 --- a/core/modules/views/tests/modules/views_test_data/src/TestViewsInstallStorage.php +++ /dev/null @@ -1,25 +0,0 @@ -