From 322aa6946341e9c3c8a26b10cbde33a1194a00c7 Mon Sep 17 00:00:00 2001 From: kanfa Date: Thu, 26 Apr 2018 15:32:50 +0000 Subject: [PATCH] add __DIR__ before autoload path --- tests/bootstrap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 85df453..a34852e 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -5,4 +5,4 @@ if (!defined("FIXTURE_PATH")) { define("FIXTURE_PATH", dirname(__DIR__) . '/tests/elements'); } -require_once __DIR__ . '../vendor/autoload.php'; \ No newline at end of file +require __DIR__.'/../vendor/autoload.php'; \ No newline at end of file