From d3d8886e3e825c1ec874edba1d9922f151392dc4 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Wed, 11 Jun 2008 07:46:28 +0000 Subject: [PATCH] Fixed test (5.2 doesn't contain GC) --- ext/session/tests/session_encode_variation5.phpt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ext/session/tests/session_encode_variation5.phpt b/ext/session/tests/session_encode_variation5.phpt index fc408847bf..9356489d1b 100644 --- a/ext/session/tests/session_encode_variation5.phpt +++ b/ext/session/tests/session_encode_variation5.phpt @@ -24,6 +24,9 @@ $_SESSION["data"] = &$array; var_dump(session_encode()); var_dump(session_destroy()); +$array["foo"] = null; +$array["blah"] = null; + echo "Done"; ob_end_flush(); ?> -- 2.50.1