removed \ in the test suite to make it compatible with PHP 5.2
authorFabien Potencier <fabien.potencier@gmail.com>
Mon, 10 May 2010 17:25:50 +0000 (19:25 +0200)
committerFabien Potencier <fabien.potencier@gmail.com>
Mon, 10 May 2010 17:25:50 +0000 (19:25 +0200)
test/Twig/Tests/AutoloaderTest.php
test/Twig/Tests/TokenStreamTest.php
test/Twig/Tests/integrationTest.php

index c268669..cfb6e12 100644 (file)
@@ -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()
   {
index 981714a..80a2bd0 100644 (file)
@@ -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;
 
index 3b3d256..34bbcc5 100644 (file)
@@ -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;