Merge branch '5.60' of github.com:civicrm/civicrm-core
authorEileen McNaughton <emcnaughton@wikimedia.org>
Fri, 24 Mar 2023 01:52:06 +0000 (14:52 +1300)
committerEileen McNaughton <emcnaughton@wikimedia.org>
Fri, 24 Mar 2023 01:52:06 +0000 (14:52 +1300)
1  2 
CRM/Contribute/Import/Parser/Contribution.php
tests/phpunit/CRM/Utils/versionCheckTest.php

index cc164b6a795dcdb5db90116abdeddebc8b06a564,d304898a103f5114590f90ebc672d1183619ea1b..23b81ca159e855e4effe42097e46ff96a9c30643
@@@ -8,9 -8,16 +8,16 @@@ use Civi\Test\Invasive
   */
  class CRM_Utils_versionCheckTest extends CiviUnitTestCase {
  
+   /**
+    * @var string
+    */
+   protected $tempDir;
    public function setUp(): void {
 -    $this->useTransaction();
      parent::setUp();
 +    $this->useTransaction();
+     $this->tempDir = sys_get_temp_dir() . '/VersionCheck-' . rand() . rand();
+     mkdir($this->tempDir);
    }
  
    /**