Skip to content

Commit

Permalink
Updating test case for new values in error reporting.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Sep 7, 2009
1 parent 5bfda28 commit 9445bd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cake/tests/cases/libs/configure.test.php
Expand Up @@ -162,7 +162,7 @@ function testSetErrorReportingLevel() {

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);
Expand Down

0 comments on commit 9445bd1

Please sign in to comment.