From 828a2e9fdfe8ed37766c6dfebc197bf53962c1f2 Mon Sep 17 00:00:00 2001 From: Allen Shaw Date: Mon, 6 Jun 2016 14:39:06 -0500 Subject: [PATCH] Fix for CRM-18770. --- tests/phpunit/CRM/Utils/TypeTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/phpunit/CRM/Utils/TypeTest.php b/tests/phpunit/CRM/Utils/TypeTest.php index 3b6a853cec..832f535ef8 100644 --- a/tests/phpunit/CRM/Utils/TypeTest.php +++ b/tests/phpunit/CRM/Utils/TypeTest.php @@ -58,6 +58,7 @@ class CRM_Utils_TypeTest extends CiviUnitTestCase { 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.`Home-street_address` asc, `table-alias`.`Home-street_address` desc,`table-alias`.column', 'MysqlOrderBy', 'table.`Home-street_address` asc, `table-alias`.`Home-street_address` desc,`table-alias`.column'), + array('a string', 'String', 'a string'), ); } -- 2.25.1