diff options
| author | Marcus Boerger <helly@php.net> | 2003-12-22 23:23:06 +0000 |
|---|---|---|
| committer | Marcus Boerger <helly@php.net> | 2003-12-22 23:23:06 +0000 |
| commit | 68251516ad4822b308c9992b0810b6171d1314cd (patch) | |
| tree | 4aec078718a3a236e313249090399101fb8e8a7c | |
| parent | 45277ec5d7b295a613762e88bffbf1f322da7be2 (diff) | |
| download | php-git-68251516ad4822b308c9992b0810b6171d1314cd.tar.gz | |
Fix test
| -rw-r--r-- | ext/standard/tests/serialize/001.phpt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/standard/tests/serialize/001.phpt b/ext/standard/tests/serialize/001.phpt index f9fb6ae4b4..68352a9393 100644 --- a/ext/standard/tests/serialize/001.phpt +++ b/ext/standard/tests/serialize/001.phpt @@ -14,11 +14,16 @@ class t class s { + public $a; + public $b; + public $c; + function s() { $this->a = "hallo"; $this->b = "php"; $this->c = "world"; + $this->d = "!"; } function __sleep() |
