Skip to content

Commit 10b46f0

Browse files
committed
Codestyle
1 parent ff2aa12 commit 10b46f0

1 file changed

Lines changed: 27 additions & 27 deletions

File tree

Tests/AbstractDatabaseDriverTestCase.php

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -327,33 +327,33 @@ public function testIsMinimumVersion()
327327
);
328328
}
329329

330-
/**
331-
* @testdox The first row of a result set can be loaded as an associative array, using old getQuery(true) syntax
332-
*/
333-
public function testLoadAssocWithOldGetQueryTrueSyntax()
334-
{
335-
$this->loadExampleData();
336-
337-
$result = static::$connection->setQuery(
338-
static::$connection->getQuery(true)
339-
->select('title')
340-
->from('#__dbtest')
341-
)->loadAssoc();
342-
343-
$this->assertEquals(
344-
[
345-
'title' => 'Testing1',
346-
],
347-
$result
348-
);
349-
}
350-
351-
/**
352-
* @testdox The first row of a result set can be loaded as an associative array
353-
*/
354-
public function testLoadAssoc()
355-
{
356-
$this->loadExampleData();
330+
/**
331+
* @testdox The first row of a result set can be loaded as an associative array, using old getQuery(true) syntax
332+
*/
333+
public function testLoadAssocWithOldGetQueryTrueSyntax()
334+
{
335+
$this->loadExampleData();
336+
337+
$result = static::$connection->setQuery(
338+
static::$connection->getQuery(true)
339+
->select('title')
340+
->from('#__dbtest')
341+
)->loadAssoc();
342+
343+
$this->assertEquals(
344+
[
345+
'title' => 'Testing1',
346+
],
347+
$result
348+
);
349+
}
350+
351+
/**
352+
* @testdox The first row of a result set can be loaded as an associative array
353+
*/
354+
public function testLoadAssoc()
355+
{
356+
$this->loadExampleData();
357357

358358
$result = static::$connection->setQuery(
359359
static::$connection->createQuery()

0 commit comments

Comments
 (0)