RemoveInstallSchemaSystemSequencesRector
Remove deprecated KernelTestBase::installSchema('system', 'sequences') calls; the sequences table was removed in Drupal 12.
-$this->installEntitySchema('node');
-$this->installSchema('system', ['sequences']);
+$this->installEntitySchema('node');
Configure your rector.php:
<?php
use DrupalRector\Drupal11\Rector\Deprecation\RemoveInstallSchemaSystemSequencesRector;
use Rector\Config\RectorConfig;
return RectorConfig::configure()
->withRules([
RemoveInstallSchemaSystemSequencesRector::class,
]);