From 6b4831ccd9cdd22d4f3aa28821efcc730a2acd09 Mon Sep 17 00:00:00 2001 From: Mikel Martin Date: Wed, 7 Feb 2024 13:18:42 +0100 Subject: [PATCH] retry with php --- Test/Unit/bootstrap.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Test/Unit/bootstrap.php b/Test/Unit/bootstrap.php index 61c1017..40a53ef 100644 --- a/Test/Unit/bootstrap.php +++ b/Test/Unit/bootstrap.php @@ -4,8 +4,8 @@ // Load magento's booststrap require __DIR__ . '/../../../../../app/bootstrap.php'; -if (file_exists(__DIR__ . '/vendor/composer/autoload.php')) { - include __DIR__ . '/vendor/composer/autoload.php'; +if (file_exists(__DIR__ . '/vendor/autoload.php')) { + include __DIR__ . '/vendor/autoload.php'; } $bootstrap = Bootstrap::create(BP, $_SERVER);