From 9cd0734f7058290924c68f9a7db6bf64d9569600 Mon Sep 17 00:00:00 2001 From: Uwe Tews Date: Sat, 16 May 2015 14:57:14 +0200 Subject: [PATCH] Modified Php tag tests to multiple php lines. --- tests/UnitTests/TemplateSource/TagTests/Php/CompilePhpTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/CompilePhpTest.php b/tests/UnitTests/TemplateSource/TagTests/Php/CompilePhpTest.php index 1cdeb5da..a9557073 100644 --- a/tests/UnitTests/TemplateSource/TagTests/Php/CompilePhpTest.php +++ b/tests/UnitTests/TemplateSource/TagTests/Php/CompilePhpTest.php @@ -139,7 +139,7 @@ public function testPHP_REMOVE_php() if (ini_get('asp_tags')) { $this->assertEquals('aa hello world multiline ae', $content, 'allow <% %>'); } else { - $this->assertEquals("aa <% echo 'hello world';%> ae", $content, 'allow asp disabled <% %>'); + $this->assertEquals("aa <% echo 'hello world';\n echo ' multiline';%> ae", $content, 'allow asp disabled <% %>'); } } /**