mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fixed the PHPCS warnings
This commit is contained in:
parent
230066a14b
commit
bcae20029c
1 changed files with 4 additions and 4 deletions
|
@ -156,10 +156,10 @@ class SessionHelperTest extends CakeTestCase {
|
|||
* @return void
|
||||
*/
|
||||
public function testFlashWithNoParams() {
|
||||
$result = $this->Session->flash();
|
||||
$expected = '<div id="flashMessage" class="message">This is a calling</div>';
|
||||
$this->assertEquals($expected, $result);
|
||||
$this->assertFalse($this->Session->check('Message.flash'));
|
||||
$result = $this->Session->flash();
|
||||
$expected = '<div id="flashMessage" class="message">This is a calling</div>';
|
||||
$this->assertEquals($expected, $result);
|
||||
$this->assertFalse($this->Session->check('Message.flash'));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue