From: Mattias Michaux Date: Sun, 8 May 2016 08:44:32 +0000 (+0200) Subject: Fixed test failure. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=10dae37ab086330633ce908365d90ec5b57c5fa1;p=civicrm-core.git Fixed test failure. --- diff --git a/tests/phpunit/CRM/Utils/TypeTest.php b/tests/phpunit/CRM/Utils/TypeTest.php index 793a5334bc..9271c5071b 100644 --- a/tests/phpunit/CRM/Utils/TypeTest.php +++ b/tests/phpunit/CRM/Utils/TypeTest.php @@ -93,7 +93,7 @@ class CRM_Utils_TypeTest extends CiviUnitTestCase { array('civicrm_column_name', 'MysqlColumnName', '`civicrm_column_name`'), array('table.civicrm_column_name', 'MysqlColumnName', '`table`.`civicrm_column_name`'), array('table.civicrm_column_name.toomanydots', 'MysqlColumnName', NULL), - array('invalid-column-name', 'MysqlColumnName', NULL), + array('Home-street_address', 'MysqlColumnName', 'Home-street_address'), array('column_name, sleep(5)', 'MysqlColumnName', NULL), array('asc', 'MysqlOrderByDirection', 'asc'), array('DESC', 'MysqlOrderByDirection', 'desc'),