From 5365a418e9c3259bab05a60bc617a838fb1043e5 Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Fri, 9 Sep 2016 23:25:54 +0200 Subject: [PATCH] Removed non-existing `CLASSNAME` reference --- tests/Doctrine/Tests/ORM/Functional/Ticket/GH5762Test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH5762Test.php b/tests/Doctrine/Tests/ORM/Functional/Ticket/GH5762Test.php index 1b45d4274..938472921 100644 --- a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH5762Test.php +++ b/tests/Doctrine/Tests/ORM/Functional/Ticket/GH5762Test.php @@ -27,7 +27,7 @@ class GH5762Test extends OrmFunctionalTestCase $result = $this->fetchData(); self::assertInstanceOf(GH5762Driver::CLASSNAME, $result); - self::assertInstanceOf(PersistentCollection::CLASSNAME, $result->driverRides); + self::assertInstanceOf('Doctrine\ORM\PersistentCollection', $result->driverRides); self::assertInstanceOf(GH5762DriverRide::CLASSNAME, $result->driverRides->get(0)); self::assertInstanceOf(GH5762Car::CLASSNAME, $result->driverRides->get(0)->car);