From: sunil Date: Thu, 30 Jun 2016 12:33:37 +0000 (+0530) Subject: upper case boolean flag X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=06abe03547937061149223c915e156709037b6d9;p=civicrm-core.git upper case boolean flag --- diff --git a/tests/phpunit/CRM/Utils/StringTest.php b/tests/phpunit/CRM/Utils/StringTest.php index 80c04e10f5..ddecfb22a9 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() {