Unit tests - Fix test-run on 5.19.beta
authorTim Otten <totten@civicrm.org>
Thu, 24 Oct 2019 20:15:03 +0000 (13:15 -0700)
committerCiviCRM <info@civicrm.org>
Wed, 16 Sep 2020 02:13:19 +0000 (19:13 -0700)
The conditional incorrectly tries to activate `api4` when running on 5.19.beta.

ext/afform/core/tests/phpunit/CRM/Afform/UtilTest.php
ext/afform/mock/tests/phpunit/api/v4/AfformTestCase.php

index d7e9629908f2b228c7fb8dcdc4782be6a4f8ba86..d355dfe3af1189d0b1e797bfee49ee9dddf7c1e1 100644 (file)
@@ -18,7 +18,7 @@ class CRM_Afform_UtilTest extends \PHPUnit\Framework\TestCase implements Headles
   public function setUpHeadless() {
     return \Civi\Test::headless()
       ->installMe(__DIR__)
-      ->install(version_compare(CRM_Utils_System::version(), '5.19', '<') ? ['org.civicrm.api4'] : [])
+      ->install(version_compare(CRM_Utils_System::version(), '5.19.alpha1', '<') ? ['org.civicrm.api4'] : [])
       ->apply();
   }
 
index 9df221ba69d6ab42cedf57427085c4d6eca5fd35..4847abf604e1445c84bb3ea08253fa12b930c0cc 100644 (file)
@@ -14,7 +14,7 @@ abstract class api_v4_AfformTestCase extends \PHPUnit\Framework\TestCase impleme
    */
   public function setUpHeadless() {
     return \Civi\Test::headless()
-      ->install(version_compare(CRM_Utils_System::version(), '5.19', '<') ? ['org.civicrm.api4'] : [])
+      ->install(version_compare(CRM_Utils_System::version(), '5.19.alpha1', '<') ? ['org.civicrm.api4'] : [])
       ->install(['org.civicrm.afform', 'org.civicrm.afform-mock'])
       ->apply();
   }