diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6217Test.php b/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6217Test.php index 3ac810fb6..861925f08 100644 --- a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6217Test.php +++ b/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6217Test.php @@ -49,18 +49,6 @@ final class GH6217Test extends OrmFunctionalTestCase } } -/** @Entity @Cache(usage="NONSTRICT_READ_WRITE") */ -class GH6217LazyEntity -{ - /** @Id @Column(type="string") @GeneratedValue(strategy="NONE") */ - public $id; - - public function __construct() - { - $this->id = uniqid(self::class, true); - } -} - /** @Entity @Cache(usage="NONSTRICT_READ_WRITE") */ class GH6217AssociatedEntity {