Issue #2080303 by aaronott: Remove Unused local variable from /core/modules/system/lib/Drupal/system/Tests/Database/LoggingTest.php.

8.0.x
webchick 2013-12-04 00:16:39 -08:00
parent 0925d67ff1
commit d26b4a9476
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ class LoggingTest extends DatabaseTestBase {
* Tests that we can log the existence of a query.
*/
function testEnableLogging() {
$log = Database::startLog('testing');
Database::startLog('testing');
db_query('SELECT name FROM {test} WHERE age > :age', array(':age' => 25))->fetchCol();
db_query('SELECT age FROM {test} WHERE name = :name', array(':name' => 'Ringo'))->fetchCol();