Skip to content

Commit

Permalink
[TASK] rename abstract class
Browse files Browse the repository at this point in the history
  • Loading branch information
achimfritz committed Jun 26, 2024
1 parent 314f31f commit 053fe35
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Tests/Functional/DataProcessing/BreadcrumbsMenuTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
use TYPO3\CMS\Core\Utility\GeneralUtility;
use TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer;

class BreadcrumbsMenuTest extends DataProcessingTest
class BreadcrumbsMenuTest extends DataProcessing
{
/**
* @return array
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
use TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController;
use TYPO3\TestingFramework\Core\Functional\FunctionalTestCase;

abstract class DataProcessingTest extends FunctionalTestCase
abstract class DataProcessing extends FunctionalTestCase
{
protected array $testExtensionsToLoad = ['typo3conf/ext/menus'];

Expand Down
2 changes: 1 addition & 1 deletion Tests/Functional/DataProcessing/ListMenuProcessorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
use TYPO3\CMS\Core\Utility\GeneralUtility;
use TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer;

class ListMenuProcessorTest extends DataProcessingTest
class ListMenuProcessorTest extends DataProcessing
{
/**
* @return array
Expand Down
2 changes: 1 addition & 1 deletion Tests/Functional/DataProcessing/TreeMenuProcessorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
use TYPO3\CMS\Core\Utility\GeneralUtility;
use TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer;

class TreeMenuProcessorTest extends DataProcessingTest
class TreeMenuProcessorTest extends DataProcessing
{
/**
* @return array
Expand Down

0 comments on commit 053fe35

Please sign in to comment.