From 5d995ac8c765fe1685a82deb7a08f4d1d2428b7d Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 14 Mar 2020 14:33:01 +0100 Subject: [PATCH] fix autoloader path --- tests/ControllerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ControllerTest.php b/tests/ControllerTest.php index eff7027..9b88d7c 100644 --- a/tests/ControllerTest.php +++ b/tests/ControllerTest.php @@ -14,7 +14,7 @@ declare(strict_types=1); namespace Modules\Draw\tests; -require_once __DIR__ . '/../Autoloader.php'; +require_once __DIR__ . '/../../tests/Autoloader.php'; use Model\CoreSettings; use Modules\Admin\Models\AccountPermission;