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 8, 2009
1 parent 11ceae2 commit 90b6272
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 @@ -150,7 +150,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 90b6272

Please sign in to comment.