Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Chi-teck committed Mar 3, 2024
1 parent e69a51a commit ee1d873
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
7 changes: 4 additions & 3 deletions tests/sut/qux/tests/src/Kernel/Migrate/Source/BarTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

namespace Drupal\Tests\qux\Kernel\Plugin\migrate\source;

use Drupal\Tests\migrate\Kernel\MigrateSourceTestBase;

/**
* Tests no-SQL source migrate plugin.
*
Expand All @@ -14,8 +12,11 @@
* @see \Drupal\Tests\migrate\Kernel\MigrateSourceTestBase::getPluginClass
*
* @covers \Drupal\qux\Plugin\migrate\source\Bar
*
* @todo Enable this test by adding 'extends MigrateSourceTestBase' once we drop
* support for Drupal 10.2
*/
final class BarTest extends MigrateSourceTestBase {
final class BarTest {

/**
* {@inheritdoc}
Expand Down
7 changes: 4 additions & 3 deletions tests/sut/qux/tests/src/Kernel/Migrate/Source/FooTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

namespace Drupal\Tests\qux\Kernel\Plugin\migrate\source;

use Drupal\Tests\migrate\Kernel\MigrateSqlSourceTestBase;

/**
* Tests SQL source migrate plugin.
*
Expand All @@ -14,8 +12,11 @@
* @see \Drupal\Tests\migrate\Kernel\MigrateSourceTestBase::getPluginClass
*
* @covers \Drupal\qux\Plugin\migrate\source\Foo
*
* @todo Enable this test by adding 'extends MigrateSourceTestBase' once we drop
* support for Drupal 10.2
*/
final class FooTest extends MigrateSqlSourceTestBase {
final class FooTest {

/**
* {@inheritdoc}
Expand Down

0 comments on commit ee1d873

Please sign in to comment.