From: Fabien Potencier Date: Mon, 10 May 2010 17:25:50 +0000 (+0200) Subject: removed \ in the test suite to make it compatible with PHP 5.2 X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=889a846f5047bc81aacd77671522a3dfc8d11c6a;p=web%2Fkonrad%2Ftwig.git removed \ in the test suite to make it compatible with PHP 5.2 --- diff --git a/test/Twig/Tests/AutoloaderTest.php b/test/Twig/Tests/AutoloaderTest.php index c268669..cfb6e12 100644 --- a/test/Twig/Tests/AutoloaderTest.php +++ b/test/Twig/Tests/AutoloaderTest.php @@ -11,7 +11,7 @@ require_once dirname(__FILE__).'/bootstrap.php'; -class Twig_Tests_AutoloaderTest extends \PHPUnit_Framework_TestCase +class Twig_Tests_AutoloaderTest extends PHPUnit_Framework_TestCase { public function testAutoload() { diff --git a/test/Twig/Tests/TokenStreamTest.php b/test/Twig/Tests/TokenStreamTest.php index 981714a..80a2bd0 100644 --- a/test/Twig/Tests/TokenStreamTest.php +++ b/test/Twig/Tests/TokenStreamTest.php @@ -11,7 +11,7 @@ require_once dirname(__FILE__).'/bootstrap.php'; -class Twig_Tests_TokenStreamTest extends \PHPUnit_Framework_TestCase +class Twig_Tests_TokenStreamTest extends PHPUnit_Framework_TestCase { static protected $tokens; diff --git a/test/Twig/Tests/integrationTest.php b/test/Twig/Tests/integrationTest.php index 3b3d256..34bbcc5 100644 --- a/test/Twig/Tests/integrationTest.php +++ b/test/Twig/Tests/integrationTest.php @@ -11,7 +11,7 @@ require_once dirname(__FILE__).'/bootstrap.php'; -class Twig_Tests_IntegrationTest extends \PHPUnit_Framework_TestCase +class Twig_Tests_IntegrationTest extends PHPUnit_Framework_TestCase { static protected $fixturesDir;