diff options
author | Felipe Pena <felipe@php.net> | 2008-08-10 00:35:40 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2008-08-10 00:35:40 +0000 |
commit | 5f68027d584c8c58135ddf54118109dd3cf84799 (patch) | |
tree | 6c620303f064f45b999c50590c0ef5cab493509b /Zend | |
parent | d9e29376f81b86720f1f81da94742714cdc2b216 (diff) | |
download | php-git-5f68027d584c8c58135ddf54118109dd3cf84799.tar.gz |
- Fixed tests (Pierre)
Diffstat (limited to 'Zend')
-rw-r--r-- | Zend/tests/heredoc_005.phpt | 2 | ||||
-rw-r--r-- | Zend/tests/heredoc_013.phpt | 2 | ||||
-rw-r--r-- | Zend/tests/heredoc_014.phpt | 2 | ||||
-rw-r--r-- | Zend/tests/unset.inc | 2 |
4 files changed, 5 insertions, 3 deletions
diff --git a/Zend/tests/heredoc_005.phpt b/Zend/tests/heredoc_005.phpt index 8ab3a65f1b..01a046fd94 100644 --- a/Zend/tests/heredoc_005.phpt +++ b/Zend/tests/heredoc_005.phpt @@ -19,4 +19,4 @@ print "{$x}"; ?> --EXPECTF-- -Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in %sheredoc_005.php on line 6 +Parse error: %s in %sheredoc_005.php on line 6 diff --git a/Zend/tests/heredoc_013.phpt b/Zend/tests/heredoc_013.phpt index b2a6673469..1ffcf73831 100644 --- a/Zend/tests/heredoc_013.phpt +++ b/Zend/tests/heredoc_013.phpt @@ -9,4 +9,4 @@ MYLABEL; echo $var; ?> --EXPECTF-- -Parse error: syntax error, unexpected T_START_HEREDOC in %sheredoc_013.php on line %d +Parse error: %s in %sheredoc_013.php on line %d diff --git a/Zend/tests/heredoc_014.phpt b/Zend/tests/heredoc_014.phpt index fa404567d0..8999aa37e9 100644 --- a/Zend/tests/heredoc_014.phpt +++ b/Zend/tests/heredoc_014.phpt @@ -9,4 +9,4 @@ MYLABEL; echo $var; ?> --EXPECTF-- -Parse error: syntax error, unexpected T_SL in %sheredoc_014.php on line %d +Parse error: %s in %sheredoc_014.php on line %d diff --git a/Zend/tests/unset.inc b/Zend/tests/unset.inc index 12f02dc0af..ef809b3939 100644 --- a/Zend/tests/unset.inc +++ b/Zend/tests/unset.inc @@ -1,3 +1,5 @@ <?php + unset($x) + ?> |