Skip to content

Commit

Permalink
[BUGFIX] Fix error in functional test with loading depending extensions
Browse files Browse the repository at this point in the history
Without ext_emconf ordering of loaded extension in tests is important.
There is already an issue about this topic on:
TYPO3/testing-framework#541
  • Loading branch information
kanow committed Oct 14, 2024
1 parent 44ee6b2 commit 076416d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ class RegisteraddressRecipientListTest extends FunctionalTestCase
{

protected array $testExtensionsToLoad = [
'typo3conf/ext/taskqueue',
'typo3conf/ext/cute_mailing',
'typo3conf/ext/cute_mailing_registeraddress',
'typo3conf/ext/tt_address',
'typo3conf/ext/taskqueue',
'typo3conf/ext/registeraddress',
'typo3conf/ext/registeraddress_logger',
];
Expand Down

0 comments on commit 076416d

Please sign in to comment.