Merge pull request #23262 from eileenmcnaughton/limit
[civicrm-core.git] / tests / phpunit / CRM / Case / PseudoConstantTest.php
index d037a5f33b334973cff67063428602abee9c5865..8a2997cb8335fe6edb1143adf8157cbf4dcfa484 100644 (file)
@@ -3,16 +3,17 @@ require_once 'CiviTest/CiviCaseTestCase.php';
 
 /**
  * Class CRM_Case_PseudoConstantTest
+ * @group headless
  */
 class CRM_Case_PseudoConstantTest extends CiviCaseTestCase {
 
   public function testCaseType() {
     CRM_Core_PseudoConstant::flush();
     $caseTypes = CRM_Case_PseudoConstant::caseType();
-    $expectedTypes = array(
+    $expectedTypes = [
       1 => 'Housing Support',
       2 => 'Adult Day Care Referral',
-    );
+    ];
     $this->assertEquals($expectedTypes, $caseTypes);
   }