Modified Php tag tests to multiple php lines.

This commit is contained in:
Uwe Tews
2015-05-16 14:57:14 +02:00
parent f6b369263e
commit 9cd0734f70

View File

@@ -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 <% %>');
}
}
/**