From 693f1f6e519758eaed89c8007fd84fadd39b3cfc Mon Sep 17 00:00:00 2001 From: Lucas Bickel Date: Thu, 2 Mar 2017 13:57:56 +0100 Subject: [PATCH] Remove system zf1 from test include path --- airtime_mvc/tests/application/bootstrap.php | 7 ------- 1 file changed, 7 deletions(-) diff --git a/airtime_mvc/tests/application/bootstrap.php b/airtime_mvc/tests/application/bootstrap.php index e46ba51b2..06b4b0dcf 100644 --- a/airtime_mvc/tests/application/bootstrap.php +++ b/airtime_mvc/tests/application/bootstrap.php @@ -74,13 +74,6 @@ set_include_path(APPLICATION_PATH . '/../tests/application/helpers' . PATH_SEPAR //cloud storage files set_include_path(APPLICATION_PATH . '/cloud_storage' . PATH_SEPARATOR . get_include_path()); -//Zend framework -if (file_exists('/usr/share/php/libzend-framework-php')) { - set_include_path('/usr/share/php/libzend-framework-php' . PATH_SEPARATOR . get_include_path()); - set_include_path('/usr/share/php/libzend-framework-php/Zend/Test/PHPUnit' . PATH_SEPARATOR . get_include_path()); -} - - require_once APPLICATION_PATH.'/configs/conf.php'; require_once 'propel/propel1/runtime/lib/Propel.php'; Propel::init("../application/configs/airtime-conf-production.php");