From c816d375e8ed18964ca277d5fb178ed0b8ea2a26 Mon Sep 17 00:00:00 2001 From: Matteo Beccati Date: Tue, 24 Jan 2017 12:46:19 +0100 Subject: [PATCH] Add missing group to DDC2660Test.php With the current PHPUnit version and PHP 7.2/master, the test fails with: 1) Doctrine\Tests\ORM\Functional\Ticket\DDC2660Test::testIssueWithExtraColumn array_flip(): Can only flip STRING and INTEGER values! 2) Doctrine\Tests\ORM\Functional\Ticket\DDC2660Test::testIssueWithoutExtraColumn array_flip(): Can only flip STRING and INTEGER values! Due to the group being NULL vs "" on older PHP versions. I will also file a bug report or fix to PHPUnit and/or PHP itself, but it sounds like the missing group was just a typo. --- tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2660Test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2660Test.php b/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2660Test.php index 18854bcb8..46380f754 100644 --- a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2660Test.php +++ b/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2660Test.php @@ -5,7 +5,7 @@ namespace Doctrine\Tests\ORM\Functional\Ticket; use Doctrine\ORM\Query\ResultSetMappingBuilder; /** - * @group + * @group DDC-2660 */ class DDC2660Test extends \Doctrine\Tests\OrmFunctionalTestCase {