From d56d58ed04c1991e650f8fa051e21cab14cd2b14 Mon Sep 17 00:00:00 2001 From: Daniel Siepmann Date: Mon, 27 Nov 2023 12:10:13 +0100 Subject: [PATCH] [CLEANUP] Migrate typo3conf path to composer package name (#1012) The tests now respect the TYPO3 extension key as well as the composer package name. There is no more need to use the old (no longer used) typo3conf/ext path. Resolves: #739 --- .../Functional/Domain/Repository/Product/TeaRepositoryTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/Functional/Domain/Repository/Product/TeaRepositoryTest.php b/Tests/Functional/Domain/Repository/Product/TeaRepositoryTest.php index c19bbe9..4a6c97c 100644 --- a/Tests/Functional/Domain/Repository/Product/TeaRepositoryTest.php +++ b/Tests/Functional/Domain/Repository/Product/TeaRepositoryTest.php @@ -16,7 +16,7 @@ use TYPO3\TestingFramework\Core\Functional\FunctionalTestCase; */ final class TeaRepositoryTest extends FunctionalTestCase { - protected array $testExtensionsToLoad = ['typo3conf/ext/tea']; + protected array $testExtensionsToLoad = ['ttn/tea']; private TeaRepository $subject;