Make long var/block tests faster
authornikic <nikita.ppv@googlemail.com>
Sun, 30 Oct 2011 10:03:56 +0000 (11:03 +0100)
committernikic <nikita.ppv@googlemail.com>
Sun, 30 Oct 2011 10:03:56 +0000 (11:03 +0100)
test/Twig/Tests/LexerTest.php

index 7594041..6e324ad 100644 (file)
@@ -119,9 +119,9 @@ class Twig_Tests_LexerTest extends PHPUnit_Framework_TestCase
         // should not throw an exception
     }
 
-    public function testLongBlock()
+    public function testLongVar()
     {
-        $template = '{{ '.str_repeat('*', 100000).' }}';
+        $template = '{{ '.str_repeat('x', 100000).' }}';
 
         $lexer = new Twig_Lexer(new Twig_Environment());
         $stream = $lexer->tokenize($template);
@@ -129,9 +129,9 @@ class Twig_Tests_LexerTest extends PHPUnit_Framework_TestCase
         // should not throw an exception
     }
 
-    public function testLongBlock1()
+    public function testLongBlock()
     {
-        $template = '{% '.str_repeat('*', 100000).' %}';
+        $template = '{% '.str_repeat('x', 100000).' %}';
 
         $lexer = new Twig_Lexer(new Twig_Environment());
         $stream = $lexer->tokenize($template);