Fix wrong path

This commit is contained in:
Romain Neutron
2012-01-11 21:04:23 +01:00
parent 3ea1e067a0
commit f15cfd6f23
2 changed files with 3 additions and 3 deletions

View File

@@ -74,14 +74,14 @@ class Feed_rssfeedsTest extends PhraseanetWebTestCaseAbstract
self::$feed_1_private = Feed_Adapter::create($appbox, self::$user, self::$feed_1_private_title, self::$feed_1_private_subtitle);
self::$feed_1_private->set_public(false);
self::$feed_1_private->set_icon(new system_file(__DIR__ . '/../testfiles/logocoll.gif'));
self::$feed_1_private->set_icon(new system_file(__DIR__ . '/../../../../testfiles/logocoll.gif'));
self::$feed_2_private = Feed_Adapter::create($appbox, self::$user, self::$feed_2_private_title, self::$feed_2_private_subtitle);
self::$feed_2_private->set_public(false);
self::$feed_3_public = Feed_Adapter::create($appbox, self::$user, self::$feed_3_public_title, self::$feed_3_public_subtitle);
self::$feed_3_public->set_public(true);
self::$feed_3_public->set_icon(new system_file(__DIR__ . '/../testfiles/logocoll.gif'));
self::$feed_3_public->set_icon(new system_file(__DIR__ . '/../../../../testfiles/logocoll.gif'));
self::$feed_4_public = Feed_Adapter::create($appbox, self::$user, self::$feed_4_public_title, self::$feed_4_public_subtitle);
self::$feed_4_public->set_public(true);

View File

@@ -3,7 +3,7 @@
require_once __DIR__ . '/../../../PhraseanetPHPUnitAuthenticatedAbstract.class.inc';
require_once __DIR__ . '/../../Bridge_datas.inc';
$new_include_path = __DIR__ . '/../../../../../vendor/alchemy/gdata/' . PATH_SEPARATOR . get_include_path();
$new_include_path = __DIR__ . '/../../../../vendor/gdata/' . PATH_SEPARATOR . get_include_path();
set_include_path($new_include_path);