From fd5bde33e500a31201c2002e89d88213a8e1e9cb Mon Sep 17 00:00:00 2001 From: sunil Date: Thu, 30 Jun 2016 18:04:34 +0530 Subject: [PATCH] upper case boolean flag --- tests/phpunit/CRM/Utils/StringTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/phpunit/CRM/Utils/StringTest.php b/tests/phpunit/CRM/Utils/StringTest.php index 93e6ab69c3..65d11563c2 100644 --- a/tests/phpunit/CRM/Utils/StringTest.php +++ b/tests/phpunit/CRM/Utils/StringTest.php @@ -89,7 +89,7 @@ class CRM_Utils_StringTest extends CiviUnitTestCase { // test utf-8 string, CRM-18997 $input = 'Registro de eventos on-line: Taller: "Onboarding - Cómo integrar exitosamente a los nuevos talentos dentro de su organización - Formación práctica."'; $maxLen = 128; - $this->assertEquals(true, mb_check_encoding(CRM_Utils_String::ellipsify($input, $maxLen), 'UTF-8')); + $this->assertEquals(TRUE, mb_check_encoding(CRM_Utils_String::ellipsify($input, $maxLen), 'UTF-8')); } public function testRandom() { -- 2.25.1