Skip to content

Commit

Permalink
fix: remove Drupal 11 deprecations from module tests (#802)
Browse files Browse the repository at this point in the history
  • Loading branch information
backlineint authored Oct 10, 2024
1 parent 1405a09 commit 1cda615
Show file tree
Hide file tree
Showing 12 changed files with 0 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ protected function setUp(): void {
$this->installEntitySchema('node');
$this->installEntitySchema('user');
$this->installConfig(['filter', 'next']);
$this->installSchema('system', ['sequences']);
$this->installSchema('node', ['node_access']);

$type = NodeType::create([
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ protected function setUp(): void {
$this->installEntitySchema('node');
$this->installEntitySchema('user');
$this->installConfig(['filter', 'next']);
$this->installSchema('system', ['sequences']);
$this->installSchema('node', ['node_access']);

$this->nextSite = NextSite::create([
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ protected function setUp(): void {
$this->installEntitySchema('user');
$this->installEntitySchema('path_alias');
$this->installConfig(['filter']);
$this->installSchema('system', ['sequences']);
$this->installSchema('node', ['node_access']);
}

Expand Down
1 change: 0 additions & 1 deletion modules/next/tests/src/Kernel/Entity/NextSiteTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ protected function setUp(): void {
$this->installEntitySchema('node');
$this->installEntitySchema('user');
$this->installConfig(['filter', 'next']);
$this->installSchema('system', ['sequences']);
$this->installSchema('node', ['node_access']);

$this->nextSite = NextSite::create([
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ protected function setUp(): void {
$this->installEntitySchema('user');
$this->installConfig(['filter', 'next', 'system', 'user']);
$this->installSchema('dblog', ['watchdog']);
$this->installSchema('system', ['sequences']);
$this->installSchema('node', ['node_access']);
$this->installSchema('user', ['users_data']);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ protected function setUp(): void {
$this->installEntitySchema('next_entity_type_config');
$this->installConfig(['filter', 'next', 'system', 'user']);
$this->installSchema('dblog', ['watchdog']);
$this->installSchema('system', ['sequences']);
$this->installSchema('node', ['node_access']);
$this->installSchema('user', ['users_data']);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ protected function setUp(): void {
$this->installEntitySchema('node');
$this->installEntitySchema('user');
$this->installConfig(['filter', 'next']);
$this->installSchema('system', ['sequences']);
$this->installSchema('node', ['node_access']);
}

Expand Down
1 change: 0 additions & 1 deletion modules/next/tests/src/Kernel/NextSettingsManagerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ protected function setUp(): void {
$this->installEntitySchema('node');
$this->installEntitySchema('user');
$this->installConfig(['filter', 'next']);
$this->installSchema('system', ['sequences']);
$this->installSchema('node', ['node_access']);

$this->nextSettingsManager = $this->container->get('next.settings.manager');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ protected function setUp(): void {
$this->installEntitySchema('user');
$this->installEntitySchema('path_alias');
$this->installConfig(['filter']);
$this->installSchema('system', ['sequences']);
$this->installSchema('node', ['node_access']);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ protected function setUp(): void {
$this->installEntitySchema('node');
$this->installEntitySchema('user');
$this->installConfig(['filter', 'next']);
$this->installSchema('system', ['sequences']);
$this->installSchema('node', ['node_access']);

$this->nextSettingsManager = $this->container->get('next.settings.manager');
Expand Down
1 change: 0 additions & 1 deletion modules/next/tests/src/Kernel/Plugin/SiteResolverTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ protected function setUp(): void {
$this->installEntitySchema('node');
$this->installEntitySchema('user');
$this->installConfig(['filter']);
$this->installSchema('system', ['sequences']);
$this->installSchema('node', ['node_access']);

// Create page type.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ protected function setUp(): void {
$this->installEntitySchema('node');
$this->installEntitySchema('user');
$this->installConfig(['filter', 'next', 'system', 'user']);
$this->installSchema('system', ['sequences']);
$this->installSchema('node', ['node_access']);
$this->installSchema('user', ['users_data']);

Expand Down

0 comments on commit 1cda615

Please sign in to comment.