From 883f9075b84e7f78f2e45894ba55e425f52c48ca Mon Sep 17 00:00:00 2001 From: Dan Cryer Date: Tue, 3 Feb 2015 10:43:44 +0000 Subject: [PATCH] Fixing tests bootstrap --- Tests/bootstrap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/bootstrap.php b/Tests/bootstrap.php index 63bf1406..a8b71034 100644 --- a/Tests/bootstrap.php +++ b/Tests/bootstrap.php @@ -21,7 +21,7 @@ $conf['b8']['view']['path'] = dirname(__DIR__) . '/PHPCI/View/'; // If the PHPCI config file is not where we expect it, try looking in // env for an alternative config path. -$configFile = dirname(__FILE__) . '/PHPCI/config.yml'; +$configFile = dirname(__FILE__) . '/../PHPCI/config.yml'; if (!file_exists($configFile)) { $configEnv = getenv('phpci_config_file');