mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Fixed formatting in session helper test
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6777 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
2109b9e909
commit
a53d308fa3
1 changed files with 20 additions and 20 deletions
|
@ -46,26 +46,26 @@ class SessionHelperTest extends CakeTestCase {
|
|||
$this->Session->__start();
|
||||
|
||||
$_SESSION = array('test' => 'info',
|
||||
'Message' => array(
|
||||
'flash' => array(
|
||||
'layout' => 'default',
|
||||
'params' => array(),
|
||||
'message' => 'This is a calling'
|
||||
),
|
||||
'notification' => array(
|
||||
'layout' => 'sessionHelper',
|
||||
'params' => array('title' => 'Notice!',
|
||||
'name' => 'Alert!'),
|
||||
'message' => 'This is a test of the emergency broadcasting system',
|
||||
),
|
||||
'bare' => array(
|
||||
'layout' => null,
|
||||
'message' => 'Bare message',
|
||||
'params' => array(),
|
||||
),
|
||||
),
|
||||
'Deeply' => array('nested' => array('key' => 'value')),
|
||||
);
|
||||
'Message' => array(
|
||||
'flash' => array(
|
||||
'layout' => 'default',
|
||||
'params' => array(),
|
||||
'message' => 'This is a calling'
|
||||
),
|
||||
'notification' => array(
|
||||
'layout' => 'sessionHelper',
|
||||
'params' => array('title' => 'Notice!',
|
||||
'name' => 'Alert!'),
|
||||
'message' => 'This is a test of the emergency broadcasting system',
|
||||
),
|
||||
'bare' => array(
|
||||
'layout' => null,
|
||||
'message' => 'Bare message',
|
||||
'params' => array(),
|
||||
),
|
||||
),
|
||||
'Deeply' => array('nested' => array('key' => 'value')),
|
||||
);
|
||||
}
|
||||
|
||||
function tearDown() {
|
||||
|
|
Loading…
Reference in a new issue