From bdc8d1e7f1c237a6ec570f8531ce90572e8de018 Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Sat, 26 Sep 2015 16:14:05 +0200 Subject: [PATCH] Issue #2567291 by jibran: Fix typo in EntityReferenceFieldTest::testReferencedEntitiesMultipleLoad() --- .../system/src/Tests/Entity/EntityReferenceFieldTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/system/src/Tests/Entity/EntityReferenceFieldTest.php b/core/modules/system/src/Tests/Entity/EntityReferenceFieldTest.php index 14a67ef4ef9..4f66b4edd38 100644 --- a/core/modules/system/src/Tests/Entity/EntityReferenceFieldTest.php +++ b/core/modules/system/src/Tests/Entity/EntityReferenceFieldTest.php @@ -170,7 +170,7 @@ class EntityReferenceFieldTest extends EntityUnitTestBase { else { // A non-existent or NULL entity target id must not return any item in // the target entities set. - $this->assertFalse(isset($loaded_entities[$delta])); + $this->assertFalse(isset($entities[$delta])); } } }