Verified Commit 65586432 authored by Dave Long's avatar Dave Long
Browse files

test: #3579189 Fix return types and baselined errors of core/tests/ Kernel code - round 5

By: mondrake
By: smustgrave
By: xjm
By: mstrelan
By: longwave
parent 9fc95e06
Loading
Loading
Loading
Loading
Loading
+0 −588

File changed.

Preview size limit exceeded, changes collapsed.

+1 −1
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@ class BlockRebuildTest extends KernelTestBase {
  /**
   * {@inheritdoc}
   */
  protected static $configSchemaCheckerExclusions = [
  protected static array $configSchemaCheckerExclusions = [
    // These blocks are intentionally put into invalid regions, so they will
    // violate config schema.
    // @see ::testRebuildInvalidBlocks()
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@ class AddItemToToolbarConfigActionTest extends KernelTestBase {
  /**
   * {@inheritdoc}
   */
  protected static $configSchemaCheckerExclusions = [
  protected static array $configSchemaCheckerExclusions = [
    // This test must be allowed to save invalid config, we can confirm that
    // any invalid stuff is validated by the config actions system.
    'editor.editor.filter_test',
+1 −3
Original line number Diff line number Diff line
@@ -42,11 +42,9 @@ class SmartDefaultSettingsTest extends KernelTestBase {
   *
   * The updated Text Format & Text Editors are explicitly checked.
   *
   * @var bool
   *
   * @see \Drupal\Core\Config\Development\ConfigSchemaChecker
   */
  protected $strictConfigSchema = FALSE;
  protected bool $strictConfigSchema = FALSE;

  /**
   * The manager for "CKEditor 5 plugin" plugins.
+0 −6
Original line number Diff line number Diff line
@@ -16,12 +16,6 @@
#[Group('config')]
#[RunTestsInSeparateProcesses]
class ConfigUninstallViaCliImportTest extends KernelTestBase {
  /**
   * Config Importer object used for testing.
   *
   * @var \Drupal\Core\Config\ConfigImporter
   */
  protected $configImporter;

  /**
   * {@inheritdoc}
Loading