From 16bddd7866dc80c2a298bc0081cbcdd12d226be1 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 4 Aug 2018 15:32:21 +0200 Subject: [PATCH] Fix vendor path --- tests/Bootstrap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Bootstrap.php b/tests/Bootstrap.php index e74461292..93566f30a 100644 --- a/tests/Bootstrap.php +++ b/tests/Bootstrap.php @@ -2,7 +2,7 @@ ini_set('memory_limit', '2048M'); -require_once __DIR__ . '/../../vendor/autoload.php'; +require_once __DIR__ . 'vendor/autoload.php'; require_once __DIR__ . '/../Autoloader.php'; use phpOMS\DataStorage\Session\HttpSession;