diff options
author | Christopher Smith <chris@jalakai.co.uk> | 2013-10-20 19:36:56 +0100 |
---|---|---|
committer | Christopher Smith <chris@jalakai.co.uk> | 2013-10-20 19:36:56 +0100 |
commit | 03a4f627659f89d54c121b485ca89dfaa4a304c0 (patch) | |
tree | 90d3c93034d81bb10700ec6e9680d3637c137892 /_test | |
parent | 9aac3abfe47b9ff6977643d06caf0f9520cd55f1 (diff) | |
download | rpg-03a4f627659f89d54c121b485ca89dfaa4a304c0.tar.gz rpg-03a4f627659f89d54c121b485ca89dfaa4a304c0.tar.bz2 |
change error level to ignore notices
Diffstat (limited to '_test')
-rw-r--r-- | _test/bootstrap.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_test/bootstrap.php b/_test/bootstrap.php index c3eba048a..9f4bb5fbd 100644 --- a/_test/bootstrap.php +++ b/_test/bootstrap.php @@ -15,7 +15,7 @@ require_once DOKU_UNITTEST.'core/TestUtils.php'; define('SIMPLE_TEST', true); // basic behaviours -define('DOKU_E_LEVEL',E_ALL); +define('DOKU_E_LEVEL',E_ALL ^ E_NOTICE); error_reporting(DOKU_E_LEVEL); set_time_limit(0); ini_set('memory_limit','2048M'); |