From f34bd0bec478c5df94709ca7001dc58aa9d223e7 Mon Sep 17 00:00:00 2001 From: Vlad Gregurco Date: Fri, 5 Jul 2019 23:45:25 +0300 Subject: [PATCH] Fix wrong include in custom bootstrap for tests --- testing/bootstrap.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/bootstrap.rst b/testing/bootstrap.rst index d24878d034e..cf1b63621a2 100644 --- a/testing/bootstrap.rst +++ b/testing/bootstrap.rst @@ -18,7 +18,7 @@ To do this, first add a file that executes your bootstrap work:: )); } - require __DIR__.'/../vendor/autoload.php'; + require __DIR__.'/../config/bootstrap.php'; Then, configure ``phpunit.xml.dist`` to execute this ``bootstrap.php`` file before running the tests: