From 77283191efd22b95232bab37eca2f2dba2d46fa3 Mon Sep 17 00:00:00 2001 From: Brandon Shipley Date: Wed, 10 Sep 2025 23:29:40 -0700 Subject: [PATCH] test if will fix ci actions --- tests/TestCase/Controller/BaseControllerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestCase/Controller/BaseControllerTest.php b/tests/TestCase/Controller/BaseControllerTest.php index 0426288..d58415c 100644 --- a/tests/TestCase/Controller/BaseControllerTest.php +++ b/tests/TestCase/Controller/BaseControllerTest.php @@ -41,7 +41,7 @@ class BaseControllerTest extends TestCase $newName = $productsFolder . DS . '2c386086-f4c5-4093-bea5-ee9c29479f58.png'; if (file_exists($toCopy)) { if (!file_exists($productsFolder)) { - mkdir($productsFolder); + mkdir($productsFolder, 0775, true); } copy($toCopy, $newName); }