mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 17:16:18 +00:00
Making test more generic so it passes on Jenkins.
This commit is contained in:
parent
4810518c7d
commit
0fc6d7a98d
1 changed files with 2 additions and 1 deletions
|
@ -264,7 +264,8 @@ class DebuggerTest extends CakeTestCase {
|
||||||
ob_start();
|
ob_start();
|
||||||
$foo .= '';
|
$foo .= '';
|
||||||
$result = ob_get_clean();
|
$result = ob_get_clean();
|
||||||
$this->assertEquals('Notice: I eated an error ' . 'CORE' . DS . ltrim(__FILE__, CAKE_CORE_INCLUDE_PATH), $result);
|
$this->assertContains('Notice: I eated an error', $result);
|
||||||
|
$this->assertContains('DebuggerTest.php', $result);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue