diff options
author | Moriyoshi Koizumi <moriyoshi@php.net> | 2003-05-08 23:23:02 +0000 |
---|---|---|
committer | Moriyoshi Koizumi <moriyoshi@php.net> | 2003-05-08 23:23:02 +0000 |
commit | 598dba147da3451bba9cef021c9bed6fc268c766 (patch) | |
tree | ffb97e5065c771355ea84fe8aaaeaacc13f4b640 | |
parent | b5c2adf41e7d45f5d00b504b3d9def1556d96c25 (diff) | |
download | php-git-598dba147da3451bba9cef021c9bed6fc268c766.tar.gz |
Fixed test case so it reflects the recent change on var_dump()
-rw-r--r-- | ext/standard/tests/serialize/bug14293.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/tests/serialize/bug14293.phpt b/ext/standard/tests/serialize/bug14293.phpt index 1d716ebcab..976eeffc0e 100644 --- a/ext/standard/tests/serialize/bug14293.phpt +++ b/ext/standard/tests/serialize/bug14293.phpt @@ -23,10 +23,10 @@ $t = unserialize($data); var_dump($t); ?> ---EXPECT-- +--EXPECTF-- __sleep called O:1:"t":2:{s:1:"a";s:5:"hello";s:1:"b";N;} -object(t)(2) { +object(t)#%d (2) { ["a"]=> string(5) "hello" ["b"]=> |