summaryrefslogtreecommitdiff
path: root/Zend/tests/gc_016.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/gc_016.phpt')
-rw-r--r--Zend/tests/gc_016.phpt4
1 files changed, 3 insertions, 1 deletions
diff --git a/Zend/tests/gc_016.phpt b/Zend/tests/gc_016.phpt
index f1e14dab1a..f082d60973 100644
--- a/Zend/tests/gc_016.phpt
+++ b/Zend/tests/gc_016.phpt
@@ -18,9 +18,11 @@ $a = new Foo();
$a->a = $a;
unset($a);
var_dump(gc_collect_cycles());
+var_dump(gc_collect_cycles());
echo "ok\n"
?>
--EXPECT--
--> int(1)
+-> int(0)
+int(1)
int(1)
ok