File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ()
You can’t perform that action at this time.
0 commit comments