mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Updating test case for new values in error reporting.
This commit is contained in:
parent
11ceae2e96
commit
90b6272a14
1 changed files with 1 additions and 1 deletions
|
@ -150,7 +150,7 @@ class ConfigureTest extends CakeTestCase {
|
|||
|
||||
Configure::write('debug', 2);
|
||||
$result = ini_get('error_reporting');
|
||||
$this->assertEqual($result, E_ALL);
|
||||
$this->assertEqual($result, E_ALL & ~E_DEPRECATED);
|
||||
|
||||
$result = ini_get('display_errors');
|
||||
$this->assertEqual($result, 1);
|
||||
|
|
Loading…
Reference in a new issue