Merge pull request #15699 from mattwire/participant_cleanup_completeOrderPBRef
[civicrm-core.git] / tests / phpunit / CRM / Core / Resources / StringsTest.php
index c059cc223664c08cf43b60903f66babc91f263c2..3b2b1f27a3b89dbbee932cb944308874ab2875fe 100644 (file)
@@ -3,7 +3,7 @@
 +--------------------------------------------------------------------+
 | CiviCRM version 5                                                  |
 +--------------------------------------------------------------------+
-| Copyright CiviCRM LLC (c) 2004-2018                                |
+| Copyright CiviCRM LLC (c) 2004-2020                                |
 +--------------------------------------------------------------------+
 | This file is a part of CiviCRM.                                    |
 |                                                                    |
@@ -40,11 +40,11 @@ class CRM_Core_Resources_StringsTest extends CiviUnitTestCase {
       new CRM_Utils_Cache_Arraycache(NULL)
     );
     $this->assertEquals(
-      array('Hello from Javascript'),
+      ['Hello from Javascript'],
       $strings->get('example', "$basedir/hello.js", "text/javascript")
     );
     $this->assertEquals(
-      array('Hello from HTML'),
+      ['Hello from HTML'],
       $strings->get('example', "$basedir/hello.html", "text/html")
     );
   }