Fix error in PHP 5.3

This commit is contained in:
mark_story 2016-01-28 21:50:56 -05:00
parent aa449b194d
commit fc57dee72f

View file

@ -498,10 +498,10 @@ class SecurityComponentTest extends CakeTestCase {
$fields = 'an-invalid-token';
$unlocked = '';
$this->Controller->request->data = [
$this->Controller->request->data = array(
'Model' => array('username' => 'nate', 'password' => 'foo', 'valid' => '0'),
'_Token' => compact('fields', 'unlocked')
];
);
$this->assertFalse($this->Controller->failed, 'Should not be failed yet');
$this->Controller->Security->startup($this->Controller);
$this->assertTrue($this->Controller->failed, 'Should fail because of validatePost.');