upper case boolean flag
authorsunil <esunil.pawar@gmail.com>
Thu, 30 Jun 2016 12:33:37 +0000 (18:03 +0530)
committersunil <esunil.pawar@gmail.com>
Thu, 30 Jun 2016 12:33:37 +0000 (18:03 +0530)
tests/phpunit/CRM/Utils/StringTest.php

index 80c04e10f55ef69282a1838712b6315e2e8bf7bf..ddecfb22a99a380d1f296f0d63715c06c5a9a87f 100644 (file)
@@ -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() {