diff options
author | foobar <sniper@php.net> | 2005-12-17 14:54:41 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2005-12-17 14:54:41 +0000 |
commit | 849a61427589c8f28fcd3f79d44de8548707c6cb (patch) | |
tree | 4f12e10c6d2e3aa0d24c38fb772289cbeef6403f | |
parent | 70a53e10c6bc2acb5a88523b3cce07374b2b576c (diff) | |
download | php-git-849a61427589c8f28fcd3f79d44de8548707c6cb.tar.gz |
- Fix test
-rwxr-xr-x | Zend/tests/bug35655.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/bug35655.phpt b/Zend/tests/bug35655.phpt index 525a30f8b1..e35764a60e 100755 --- a/Zend/tests/bug35655.phpt +++ b/Zend/tests/bug35655.phpt @@ -10,7 +10,7 @@ highlight.html = #000000 --FILE-- <?php $code = ' -<? +<?php $x = <<<EOT some string EOT @@ -20,6 +20,6 @@ highlight_string($code); ?> --EXPECT-- <code><span style="color: #000000"> -<br /><span style="color: #0000BB"><? <br /> $x </span><span style="color: #007700">= <<<EOT<br /></span><span style="color: #0000BB">some string <br /></span><span style="color: #007700">EOT<br /> </span><span style="color: #0000BB">$y </span><span style="color: #007700">= </span><span style="color: #0000BB">2</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">?></span> +<br /><span style="color: #0000BB"><?php<br /> $x </span><span style="color: #007700">= <<<EOT<br /></span><span style="color: #0000BB">some string <br /></span><span style="color: #007700">EOT<br /> </span><span style="color: #0000BB">$y </span><span style="color: #007700">= </span><span style="color: #0000BB">2</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">?></span> </span> </code> |