summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/session/tests/005.phpt2
-rw-r--r--ext/session/tests/006.phpt1
2 files changed, 3 insertions, 0 deletions
diff --git a/ext/session/tests/005.phpt b/ext/session/tests/005.phpt
index 38e660b100..34b0e39842 100644
--- a/ext/session/tests/005.phpt
+++ b/ext/session/tests/005.phpt
@@ -3,6 +3,8 @@ Custom save handler, multiple session_start()s, complex data structure test.
--FILE--
<?php
+error_reporting(E_ALL & ~E_NOTICE);
+
class handler {
var $data = 'baz|O:3:"foo":2:{s:3:"bar";s:2:"ok";s:3:"yes";i:1;}arr|a:1:{i:3;O:3:"foo":2:{s:3:"bar";s:2:"ok";s:3:"yes";i:1;}}';
function open($save_path, $session_name)
diff --git a/ext/session/tests/006.phpt b/ext/session/tests/006.phpt
index 91f1cb949d..649e42c858 100644
--- a/ext/session/tests/006.phpt
+++ b/ext/session/tests/006.phpt
@@ -2,6 +2,7 @@
References between variables in sessions
--FILE--
<?php
+error_reporting(E_ALL & ~E_NOTICE);
ob_start();
session_id("test");
session_start();