From 889a846f5047bc81aacd77671522a3dfc8d11c6a Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 10 May 2010 19:25:50 +0200 Subject: [PATCH] removed \ in the test suite to make it compatible with PHP 5.2 --- test/Twig/Tests/AutoloaderTest.php | 2 +- test/Twig/Tests/TokenStreamTest.php | 2 +- test/Twig/Tests/integrationTest.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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; -- 1.7.2.5