diff options
author | Stig Bakken <ssb@php.net> | 2002-05-12 07:08:25 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 2002-05-12 07:08:25 +0000 |
commit | 201ec25f42af3107088652e6fc78f82ce6ff37e9 (patch) | |
tree | 240414cc0345fb83dbf207b9a2b37e9db10eb7f9 /pear/tests | |
parent | b3690bbe19871afed82939b25352b859e0e24bb8 (diff) | |
download | php-git-201ec25f42af3107088652e6fc78f82ce6ff37e9.tar.gz |
* exclude _lastmodified registry attrib from tests
Diffstat (limited to 'pear/tests')
-rw-r--r-- | pear/tests/pear_registry.phpt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pear/tests/pear_registry.phpt b/pear/tests/pear_registry.phpt index 143b2ee8af..214ecbfe79 100644 --- a/pear/tests/pear_registry.phpt +++ b/pear/tests/pear_registry.phpt @@ -50,6 +50,7 @@ function dumpall(&$reg) print $pkg["name"] . ":"; unset($pkg["name"]); foreach ($pkg as $k => $v) { + if ($k == '_lastmodified') continue; print " $k=\"$v\""; } print "\n"; |