From 53cc505037c8b47fb98524e22b62ae3cf1948329 Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Wed, 12 Jun 2019 23:46:15 +0200 Subject: [PATCH] Integration tests: Configure vendor path Now that this is possible, make the easy change... --- framework/core/tests/integration/TestCase.php | 1 + 1 file changed, 1 insertion(+) diff --git a/framework/core/tests/integration/TestCase.php b/framework/core/tests/integration/TestCase.php index 8785f8669..2d295d11d 100644 --- a/framework/core/tests/integration/TestCase.php +++ b/framework/core/tests/integration/TestCase.php @@ -43,6 +43,7 @@ abstract class TestCase extends \PHPUnit\Framework\TestCase $site = new InstalledSite( [ 'base' => __DIR__.'/tmp', + 'vendor' => __DIR__.'/../../vendor', 'public' => __DIR__.'/tmp/public', 'storage' => __DIR__.'/tmp/storage', ],