From: Mattias Michaux Date: Tue, 26 Apr 2016 12:32:55 +0000 (+0200) Subject: Typo fix in tests. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=96cb6be9dd2be0eb04e3724a838db2c5dfc5d2d6;p=civicrm-core.git Typo fix in tests. --- diff --git a/tests/phpunit/CRM/Utils/TypeTest.php b/tests/phpunit/CRM/Utils/TypeTest.php index ae131aa268..b8371cdd05 100644 --- a/tests/phpunit/CRM/Utils/TypeTest.php +++ b/tests/phpunit/CRM/Utils/TypeTest.php @@ -46,7 +46,7 @@ class CRM_Utils_TypeTest extends CiviUnitTestCase { array('DESC', 'MysqlOrderByDirection', 'desc'), array('DESCc', 'MysqlOrderByDirection', NULL), array('table.civicrm_column_name desc', 'MysqlOrderBy', 'table.civicrm_column_name desc'), - array('table.civicrm_column_name desc,other_column,another_column desc', 'MysqlOrderBy', 'table.civicrm_column_name desc, other_column, another_column desc'), + array('table.civicrm_column_name desc,other_column, another_column desc', 'MysqlOrderBy', 'table.civicrm_column_name desc,other_column, another_column desc'), ); }