From 976b4f906096048dec07ea432ed0ca384b7ee045 Mon Sep 17 00:00:00 2001 From: Mattias Michaux Date: Sun, 8 May 2016 14:55:30 +0200 Subject: [PATCH] Fixed escape test failure. --- tests/phpunit/CRM/Utils/TypeTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/phpunit/CRM/Utils/TypeTest.php b/tests/phpunit/CRM/Utils/TypeTest.php index 9271c5071b..367f08e299 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('Home-street_address', 'MysqlColumnName', 'Home-street_address'), + array('Home-street_address', 'MysqlColumnName', '`Home-street_address`'), array('column_name, sleep(5)', 'MysqlColumnName', NULL), array('asc', 'MysqlOrderByDirection', 'asc'), array('DESC', 'MysqlOrderByDirection', 'desc'), -- 2.25.1