X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=tests%2Fphpunit%2Fincludes%2Fdb%2FDatabaseSQLTest.php;h=5c2d4b7045cd731950bb6157a6b16975cc796054;hb=74a77b0db63d57214eef470b043e38e779092810;hp=bdd567e7f6e37594d836704707c6b068fc4b9f2c;hpb=8cabb5f7778574aa723e5615b27a3f5ac104c48d;p=lhc%2Fweb%2Fwiklou.git diff --git a/tests/phpunit/includes/db/DatabaseSQLTest.php b/tests/phpunit/includes/db/DatabaseSQLTest.php index bdd567e7f6..5c2d4b7045 100644 --- a/tests/phpunit/includes/db/DatabaseSQLTest.php +++ b/tests/phpunit/includes/db/DatabaseSQLTest.php @@ -101,7 +101,11 @@ class DatabaseSQLTest extends MediaWikiTestCase { 'tables' => array( 'table', 't2' => 'table2' ), 'fields' => array( 'tid', 'field', 'alias' => 'field2', 't2.id' ), 'conds' => array( 'alias' => 'text' ), - 'options' => array( 'LIMIT' => 1, 'GROUP BY' => array( 'field', 'field2' ), 'HAVING' => array( 'COUNT(*) > 1', 'field' => 1 ) ), + 'options' => array( + 'LIMIT' => 1, + 'GROUP BY' => array( 'field', 'field2' ), + 'HAVING' => array( 'COUNT(*) > 1', 'field' => 1 ) + ), 'join_conds' => array( 't2' => array( 'LEFT JOIN', 'tid = t2.id' ) ),