1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
From: =?utf-8?q?David_Pr=C3=A9vot?= <david@tilapin.org>
Date: Sat, 4 Jun 2016 13:44:06 -0400
Subject: Fix homemade autoload path
---
tests/bootstrap.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/bootstrap.php b/tests/bootstrap.php
index 8e6d413..25f8057 100644
--- a/tests/bootstrap.php
+++ b/tests/bootstrap.php
@@ -1,5 +1,5 @@
<?php
-require __DIR__ . '/../vendor/autoload.php';
+require __DIR__ . '/../src/autoload.php';
require __DIR__ . '/TestCase.php';
define('TEST_FILES_PATH', __DIR__ . '/_files/');
|