From: Jan Schneider Date: Thu, 3 Dec 2009 18:01:18 +0000 (+0100) Subject: Fix package name. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=019feb42a7290aae1a7bd75d7f05ce698a4d8b5f;p=horde.git Fix package name. --- diff --git a/framework/Constraint/test/Horde/Constraint/AllTests.php b/framework/Constraint/test/Horde/Constraint/AllTests.php index 379357781..2c24a6bf3 100644 --- a/framework/Constraint/test/Horde/Constraint/AllTests.php +++ b/framework/Constraint/test/Horde/Constraint/AllTests.php @@ -8,22 +8,23 @@ * Define the main method */ if (!defined('PHPUnit_MAIN_METHOD')) { - define('PHPUnit_MAIN_METHOD', 'Horde_Horde_Constraint_AllTests::main'); + define('PHPUnit_MAIN_METHOD', 'Horde_Constraint_AllTests::main'); } /** * Prepare the test setup. */ require_once 'Horde/Test/AllTests.php'; +set_include_path(dirname(__FILE__) . '/../../' . PATH_SEPARATOR . get_include_path()); /** - * @package Horde_Horde_Constraint + * @package Horde_Constraint * @subpackage UnitTests */ -class Horde_Horde_Constraint_AllTests extends Horde_Test_AllTests +class Horde_Constraint_AllTests extends Horde_Test_AllTests { } -if (PHPUnit_MAIN_METHOD == 'Horde_Horde_Constraint_AllTests::main') { - Horde_Horde_Constraint_AllTests::main('Horde_Horde_Constraint', __FILE__); +if (PHPUnit_MAIN_METHOD == 'Horde_Constraint_AllTests::main') { + Horde_Constraint_AllTests::main('Horde_Constraint', __FILE__); }