From a65cbe78a7f8721eb68e685d30a320e0d14e8648 Mon Sep 17 00:00:00 2001 From: webchick Date: Wed, 4 Dec 2013 00:11:37 -0800 Subject: [PATCH] Issue #2080305 by aaronott: Remove Unused local variable from /core/modules/system/lib/Drupal/system/Tests/Database/FetchTest.php. --- .../system/lib/Drupal/system/Tests/Database/FetchTest.php | 1 - 1 file changed, 1 deletion(-) diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/FetchTest.php b/core/modules/system/lib/Drupal/system/Tests/Database/FetchTest.php index d58746d16bc..fe087b599bd 100644 --- a/core/modules/system/lib/Drupal/system/Tests/Database/FetchTest.php +++ b/core/modules/system/lib/Drupal/system/Tests/Database/FetchTest.php @@ -126,7 +126,6 @@ class FetchTest extends DatabaseTestBase { * Confirms that we can fetch an entire column of a result set at once. */ function testQueryFetchCol() { - $records = array(); $result = db_query('SELECT name FROM {test} WHERE age > :age', array(':age' => 25)); $column = $result->fetchCol(); $this->assertIdentical(count($column), 3, 'fetchCol() returns the right number of records.');