Commit b1b4ba37 authored by catch's avatar catch
Browse files

Issue #3240173 by alexpott, andypost:...

Issue #3240173 by alexpott, andypost: \Drupal\KernelTests\Core\Config\ConfigImporterTest::testIsInstallable() can cause deprecations on PHP 8.1
parent bbb0d6c1
Loading
Loading
Loading
Loading
+3 −0
Changes for core/modules/config/tests/config_test/config/schema/config_test.schema.yml: 3 added lines, 0 removed lines.
Original line number Diff line number Diff line
@@ -109,6 +109,9 @@ config_test.no_status.default:
    label:
      type: label
      label: 'Label'
    uuid:
      type: string
      label: 'UUID'

config_test.system:
  type: config_object
+1 −1
Changes for core/modules/config/tests/config_test/config_test.module: 1 added line, 1 removed line.
Original line number Diff line number Diff line
@@ -36,7 +36,7 @@ function config_test_entity_type_alter(array &$entity_types) {
  $config_test_no_status->set('id', 'config_test_no_status');
  $config_test_no_status->set('entity_keys', $keys);
  $config_test_no_status->set('config_prefix', 'no_status');
  $config_test_no_status->set('mergedConfigExport', ['id' => 'id', 'label' => 'label']);
  $config_test_no_status->set('mergedConfigExport', ['id' => 'id', 'label' => 'label', 'uuid' => 'uuid']);
  if (\Drupal::service('state')->get('config_test.lookup_keys', FALSE)) {
    $entity_types['config_test']->set('lookup_keys', ['uuid', 'style']);
  }