summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2008-08-10 14:15:31 +0000
committerPierre Joye <pajoye@php.net>2008-08-10 14:15:31 +0000
commitbb8085acc4256225bb0fde23c5f25b0938366c90 (patch)
tree4e3ae3c7fa6a57972987db9d4f8dabb144ea5129
parenteebec53bc09e5e249942353b166e87d8fcb8fb0f (diff)
downloadphp-git-bb8085acc4256225bb0fde23c5f25b0938366c90.tar.gz
- fix string len
-rw-r--r--ext/standard/tests/file/bug40501.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/standard/tests/file/bug40501.phpt b/ext/standard/tests/file/bug40501.phpt
index 8acae8cf0e..806aba637c 100644
--- a/ext/standard/tests/file/bug40501.phpt
+++ b/ext/standard/tests/file/bug40501.phpt
@@ -10,11 +10,11 @@ fclose($h);
var_dump($data);
?>
---EXPECT--
+--EXPECTF--
array(2) {
[0]=>
- string(88) "this element contains the delimiter, and ends with an odd number of
+ string(%d) "this element contains the delimiter, and ends with an odd number of
backslashes (ex: 1)\"
[1]=>
- string(30) "and it isn't the last element$"
+ string(%d) "and it isn't the last element$"
}