From 5165ffe61877c544c933a1a6bf639c499888c3f2 Mon Sep 17 00:00:00 2001 From: webchick Date: Wed, 4 Dec 2013 00:39:22 -0800 Subject: [PATCH] Issue #2080403 by mrsinguyen: Remove Unused local variable from /core/modules/simpletest/lib/Drupal/simpletest/Tests/DrupalUnitTestBaseTest.php. --- .../lib/Drupal/simpletest/Tests/DrupalUnitTestBaseTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/simpletest/lib/Drupal/simpletest/Tests/DrupalUnitTestBaseTest.php b/core/modules/simpletest/lib/Drupal/simpletest/Tests/DrupalUnitTestBaseTest.php index 4e598bf7c7c..66cc3330521 100644 --- a/core/modules/simpletest/lib/Drupal/simpletest/Tests/DrupalUnitTestBaseTest.php +++ b/core/modules/simpletest/lib/Drupal/simpletest/Tests/DrupalUnitTestBaseTest.php @@ -229,7 +229,7 @@ class DrupalUnitTestBaseTest extends DrupalUnitTestBase { $this->enableModules(array('field_test')); // Create a field and an instance. - $display = entity_create('entity_display', array( + entity_create('entity_display', array( 'targetEntityType' => 'entity_test', 'bundle' => 'entity_test', 'mode' => 'default',