From 23256bd8723685facee41bdc65f04e33a5cca891 Mon Sep 17 00:00:00 2001 From: Anja Leichsenring <aleichsenring@ab-softlab.de> Date: Tue, 11 Feb 2020 17:45:46 +0100 Subject: [PATCH] [BUGFIX] Make abstract test class really abstract to exclude it from test runs Added the missing keyword abstract to the class definition to prevent phpunit from issuing a warning about the class not containing any tests. Resolves: #90357 Releases: master, 9.5 Change-Id: I4b2d5c8111d63e73039658efffe73888b0c84179 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/63204 Reviewed-by: Oliver Klee <typo3-coding@oliverklee.de> Reviewed-by: Oliver Hader <oliver.hader@typo3.org> Reviewed-by: Georg Ringer <georg.ringer@gmail.com> Tested-by: Georg Ringer <georg.ringer@gmail.com> --- .../Tests/Functional/XmlSitemap/AbstractXmlSitemapPagesTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typo3/sysext/seo/Tests/Functional/XmlSitemap/AbstractXmlSitemapPagesTest.php b/typo3/sysext/seo/Tests/Functional/XmlSitemap/AbstractXmlSitemapPagesTest.php index 82a88c30b924..18edc64520af 100644 --- a/typo3/sysext/seo/Tests/Functional/XmlSitemap/AbstractXmlSitemapPagesTest.php +++ b/typo3/sysext/seo/Tests/Functional/XmlSitemap/AbstractXmlSitemapPagesTest.php @@ -20,7 +20,7 @@ use TYPO3\CMS\Frontend\Tests\Functional\SiteHandling\AbstractTestCase; use TYPO3\TestingFramework\Core\Functional\Framework\Frontend\InternalRequest; use TYPO3\TestingFramework\Core\Functional\Framework\Frontend\InternalResponse; -class AbstractXmlSitemapPagesTest extends AbstractTestCase +abstract class AbstractXmlSitemapPagesTest extends AbstractTestCase { /** * @var array -- GitLab