diff options
author | Robin Fernandes <robinf@php.net> | 2008-12-05 22:12:07 +0000 |
---|---|---|
committer | Robin Fernandes <robinf@php.net> | 2008-12-05 22:12:07 +0000 |
commit | 2057a9a3f955419bb7dfc739dbaa308cdfb9a302 (patch) | |
tree | 67127205117c59412c6f78d82fc51485ee048def /tests/classes/serialize_001.phpt | |
parent | 64a1f04f171d8c983e8f63fda0908cd4ee2538da (diff) | |
download | php-git-2057a9a3f955419bb7dfc739dbaa308cdfb9a302.tar.gz |
Add some class related tests, fix hard-coded object ID in serialize_001.phpt.
Diffstat (limited to 'tests/classes/serialize_001.phpt')
-rwxr-xr-x | tests/classes/serialize_001.phpt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/classes/serialize_001.phpt b/tests/classes/serialize_001.phpt index 16c79d415e..142fc50fcd 100755 --- a/tests/classes/serialize_001.phpt +++ b/tests/classes/serialize_001.phpt @@ -47,19 +47,19 @@ foreach($tests as $data) ?> ===DONE=== <?php exit(0); ?> ---EXPECT-- +--EXPECTF-- ========== -string(6) "String" +%unicode|string%(6) "String" Test::__construct(String) Test::serialize(String) Test::unserialize(String) -object(Test)#1 (1) { - ["data"]=> - string(6) "String" +object(Test)#%d (1) { + [%u|b%"data"]=> + %unicode|string%(6) "String" } -object(Test)#1 (1) { - ["data"]=> - string(6) "String" +object(Test)#%d (1) { + [%u|b%"data"]=> + %unicode|string%(6) "String" } ========== NULL |